このバックボーン ビューを定義しました。
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
コンソールにファイルへのリクエストが表示されますが。私は何が欠けていますか?