我是Backbone的新手,我正在尝试使用Underscore的模板渲染基本视图。这是javascript:
TestView = Backbone.View.extend({
initialize: function() {
this.render();
},
render: function() {
var template = _.template( $('#template').html(), {} );
this.el.html( template );
}
});
var test_view = new TestView( { el: $('#container') } );
这是我在Chrome中遇到的错误:
Uncaught TypeError: Expecting a function in instanceof check, but got [object Object]
它在第1203行(开发版)中抛出Backbone的错误。您可以在my website看到错误。
我在这里做错了什么?我应该省略render()函数吗?
答案 0 :(得分:12)
更改加载顺序,即首先是jQuery:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="http://documentcloud.github.com/underscore/underscore.js"></script>
<script src="http://backbonejs.org/backbone.js"></script>