我在使用变量时遇到了问题,而这些变量通常对理解.js 没有问题,但似乎当您将 JST 与 underscore.js 结合使用时,它似乎很困难。
var something= SD.defaultView.extend({
el: 'page',
template: JST['app/www/js/templates/sex.ejs'],
data: {
header: 'some information!!!',
image: '/img/path.jpg'
},
render: function () {
var compiled = _.template(this.template(), this.data); //I pass in the complied JST template
this.$el.html(compiled);
}
});
呈现的 JST 文件
this["JST"]["app/www/js/templates/sex.ejs"] = function (obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
__p += ((__t = ( header )) == null ? '' : __t) + '<sexform>Hello There</sexform>';
}
return __p
};
错误
ReferenceError: header is not defined - templates.js (line 21)
...obj = {});var __t, __p = '', __e = _.escape;with (obj) {__p +=((__t = ( header )...
性.ejs
<%= header %><sexform>Hello There</sexform>
背景资料
正如预期的那样,header
在阅读器时不可用,这是通过 grunt 文件发生的,每次更改我的 JST 模板。我觉得我必须以错误的方式实施 JST。
但是,对我来说,这似乎是做所有事情的正确方法。
当然,我正在尝试在 sex.ejs 中使用带下划线的变量
所有这些代码都可以在这里看到:http: //m.sexdiaries.co.uk/#wank 注意: 我可以保证这对工作来说是安全的并且不包含任何图像,尽管它确实不像 url 那样具有误导性成人材料,它是一个教育应用程序。