我尝试在dojo上探索this example 然后,我刚刚注意到这些代码行:
dataSource: {
data: products,
schema: {
model: {
fields: {
ProductName: { type: "string" },
UnitPrice: { type: "number" },
UnitsInStock: { type: "number" },
Discontinued: { type: "boolean" }
}
}
},
我试图删除整个schema
的东西,它运行得很好。它不会影响列和字段甚至加载性能。
现在我想知道那件事的目的。我做了一些快速研究,但没有发现任何具体内容。