我是 Backbone 和 Require JS 的新手。
我收到以下错误:
无法读取未定义的属性视图。
所以 Backbone 不可用,但我看不出问题出在哪里。任何帮助将非常感激。
我有以下 3 个文件:
索引.html:
<!DOCTYPE html>
<html lang="en">
<head>
<script data-main="boot" src="../libs/require/require.js"></script>
</head>
<body>
<div id="main">Magic!</div>
</body>
</html>
引导.js:
require.config({ baseUrl: "../", paths: { jquery : "libs/jquery/jquery-1.8.3.min", underscore : "libs/underscore/underscore-min", backbone : "libs/backbone/backbone-min" } }); require( [ "app/views/app" ], function(AppView) { var app = new AppView(); });
应用程序.js:
define([
"jquery",
"underscore",
"backbone"
], function( $, _, Backbone ) {
var AppView = Backbone.View.extend({
el: $( "#main" ),
initialize: function () {
this.render();
},
render: function() {
this.el.html("huzzah!");
}
});
return AppView;
});