Nhúng mã js vào db dưới dạng chuỗi thoát là ý tưởng tồi vì nó không dễ dàng để quản lý, thay đổi, sử dụng. Thay vào đó, tôi sẽ cấu trúc lại mã của bạn một chút:
vids.insert({
url:'//jwpsrv.com/feed/64I7ulrK.rss',
width:'100%',
aspectratio:'16:9',
divSelector:'64I7ulrK'
})
Videos.html:
<template name="videos">
<div class="{{divSelector}}"></div>
</template>
Videos.js:
Template.videos.rendered = function () {
jwplayer(this.data.divSelector).setup({
playlist : this.data.url,
width : this.data.width,
aspectratio : this.data.aspectratio
});
};