我試圖渲染骨幹網ui表時收到「Uncaught TypeError:Can not call method'table of'undefined」。我只是試圖從網站呈現示例表。我試圖搜索變量的設置,但似乎沒有任何工作。任何幫助不勝感激。示例代碼如下。一個簡單的集合,我試圖在骨幹ui表視圖中顯示。 JS錯誤發生在骨幹內部的渲染方法中-ui.js
window.regions = new Backbone.Collection([{
name: 'Americas',
notes: 'Bright'
}, {
name: 'Africa',
notes: 'Fruity'
}]);
var table = new Backbone.UI.TableView({
el: $('#table_container'),
sortable: true,
model: regions,
columns: [{
title: 'Name',
content: 'name'
}, {
title: 'Notes',
content: 'notes'
}]
}).render();
我擁有了一切包在$(文件)。就緒(函數(){}) – kralcen 2013-03-25 23:52:04