尝试使用itemtpl属性显示子对象时,我遇到了一些问题。这是一个问题的例子
JSON字符串:
{"messages" : [{"body":{"special":"some special format", "plain":"plain format"}}]
型号:
Ext.regModel('MyFeed', {
fields: [
{name: 'body'}
]
});
商店:
var FeedStore = new Ext.data.Store({
model: 'MyFeed',
proxy: {
type: 'ajax',
url: 'data.json',
reader: {
type: 'json',
root: 'messages'
}
}
});
列表:
var FeedList = new Ext.List({
itemTpl : '<div>{body}</div>',
store: FeedStore,
width: '100%',
style: 'background-color: #dfe2e3',
plugins: [{
ptype: 'pullrefresh'
}]
});
答案 0 :(得分:2)
您可以设置映射:
Ext.regModel('MyFeed', {
fields: [
{name: 'body'},
{name: 'special', mapping: 'body.special'},
{name: 'plain', mapping: 'body.plain'}
]
});