我有一个传入的提供对象数组,看起来像这样:
[{
"id" : 16,
"price" : 500,
"quantity" : 2000,
"denomination" : "case",
"denominationPlural" : "cases",
"product" : {
"id" : 14,
"description" : "This is the text description for product 14."
}
}, {
"id" : 18,
"price" : 500,
"quantity" : 1,
"denomination" : "study",
"denominationPlural" : "studies",
"product" : {
"id" : 17,
"description" : "This is a text description for product 17."
}
}]
产品是产品乘以价格的数量。
现在,我想在GridPanel中显示这些产品,但还要在这些行中包含嵌套的产品信息。这是我之前的做法:
Ext.define('Offering', {
extend: 'Ext.data.Model',
fields: [
{name: 'id', type: 'number'},
{name: 'price', type: 'number'},
{name: 'quantity', type: 'number'},
{name: 'denomination', type: 'string'},
{name: 'denominationPlural', type: 'string'},
{name: 'product.description', type: 'string'},
]
});
var offeringStore = Ext.create('Ext.data.Store', {
autoDestroy: true,
model: 'Offering',
proxy: {
type: 'ajax',
url: '/offerings',
reader: {
type: 'json',
root: 'success'
}
},
autoLoad:true
});
var offeringGrid = Ext.create('Ext.grid.Panel', {
store: offeringStore,
columns: [{
header: 'id',
dataIndex: 'id'
}, {
header: 'price',
dataIndex: 'price'
}, {
header: 'quantity',
dataIndex: 'quantity'
}, {
header: 'denomination',
dataIndex: 'denomination'
}, {
header: 'description',
dataIndex: 'product.description'
},
};
这工作得很好。然后,在此过程中的某个地方(包括从ExtJS 4.2.1升级到ExtJS 5.1.1)和使用Sencha Architect的方法,它崩溃了。
问题1:Sencha Architect阻止在“产品模型”中为“product.description”创建条目,并抱怨“”。字符。但是,如果将其创建为“whateveryouwant”,则可以进入“模型”字段并将其重命名为“product.description”。
问题2:解决“。”之后发出并运行该应用程序,“product.description”列的单元格为空白。
问题3:JavaScript控制台产生零错误。传入的数据看起来不错。
我应该如何显示这些嵌套数据?
最佳答案
我的方法很简单。只需将mapping
属性添加到模型中即可:
{
name: 'product.description',
type: 'string',
mapping : 'product.description'
}
无需
renderer
。关于javascript - 如何在ExtJS(和Sencha architect)中的GridPanel中显示嵌套对象?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30734083/