我定义了这个主干视图:
define(["jquery", "backbone", "main", "text!templates/loginViewTemplate.html"],
function($, Backbone, loginViewTemplate) {
var LoginView = Backbone.View.extend({
render: function() {
console.log(loginViewTemplate);
this.template = _.template(loginViewTemplate, {});
$(this.el).html(this.template);
return this;
},
// ...
});
});
但是 console.log 语句是“未定义的”,没有渲染。loginViewTemplate.html
虽然我可以在控制台中看到对文件的请求。我错过了什么?