所以我在html文件中使用了这个模板 -
<%= x %>
在我看来,它已被装载了requirejs的帮助。我想用数据加载这个模板。
var template = _.template(this.rawTpl);
var data = { x: 10};
this.$('.instant_preview').html(template(data));
但这会抛出
Uncaught ReferenceError: x is not defined
console.log(this.rawTpl);
表示已加载模板。问题是什么?