我只是在學習關於backgrid.js的基礎知識。因此,當我嘗試複製主頁Backgrid.js上的代碼時,由於傳遞列中對象數組時出現特定錯誤,我無法渲染網格。我相信我使用正確的格式Backgrid無法呈現列
var columns = [
{ name: "name", label: "Name", cell: "string" },
{ name: "address", label: "Address", cell: "string" },
{ name: "tel", label: "Phone", cell: "integer" },
{ name: "email", label: "Email", cell: "string" },
{ name: "type", label: "Contact Type", cell: "string" }
];
誤差未捕獲的類型錯誤:對象[對象的對象]無方法「listenTo」發生在在此步驟初始化網格的過程:
var grid = new Backgrid.Grid({
columns: columns,
collection: this.collection
});
我是如何初始化網格的問題?
你可以發佈你的HTML嗎? – 2013-02-08 21:17:13