我已經使用MVC在Backbone.js中構建我的應用程序。一切,是在Chrome /火狐/ IE運行良好,9及以上,但不是在IE8及以下: -對象不支持屬性或方法「綁定」 - Backbone.js
var userDetailView = backbone.View.extend({
el: '#user-details',
tagName: 'div',
template: Handlebars.templates.UserDetails,
model: userModel,
initialize: function() {
_.bindAll(this, "render");
this.model.bind('change', this.render);
return this;
}
});
我得到如下錯誤: -
SCRIPT438:對象不支持財產或方法「綁定」
任何人都可以幫忙嗎?
您在項目中是否包含下劃線? – backdesk
@Crungmungus是的,我有。它在Chrome和Mozilla工作 – Shubh