我有这个json
{
"root":{
"category":[
{
"categoryId":"1",
"children":{
"child":[
{
"subcategoryId":"1",
"children":{
"child":[
{
"productId":"1"
},
{
"productId":"2"
}
]
}
},
{
"subcategoryId":"2",
"children":{
"child":[
{
"productId":"3"
},
{
"productId":"4"
}
]
}
},
{
"subcategoryId":"3",
"children":{
"child":[
{
"productId":"5"
},
{
"productId":"6"
}
]
}
}
]
}
},
{
"categoryId":"2",
"children":{
"child":[
{
"subcategoryId":"4",
"children":{
"child":[
{
"productId":"7"
},
{
"productId":"8"
}
]
}
},
{
"subcategoryId":"5",
"children":{
"child":[
{
"productId":"9"
},
{
"productId":"10"
},
{
"productId":"11"
}
]
}
}
]
}
}
]
}
}
这个模型
Ext.define('ParentMode', {
extend: 'Ext.data.Model',
config: {
fields: [
{name: 'categoryId', type: 'string'},
{name: 'children'} // VERY IMPORTANT TO ADD THIS FIELD
],
proxy: {
type: 'ajax',
url : 'store.php',
reader: {
type: 'json',
rootProperty: 'root.category' // this works fine
}
}
}
})
我有 3 个不同的视图:第一个视图“主”,我有一个显示“categoryId”的数据视图:
var myStore = Ext.create('Ext.data.Store', {
model: 'ParentMode',
autoLoad:true
});
var dataview = Ext.create('Ext.DataView', {
scrollable: false,
store: myStore,
listeners: {
itemtap: function(list, index, target, record){
this.up('main').push({
xtype: 'categories',
title: record.get('categoryId'),
extraRecord:record
})
}
}
});
正如您在此“主”视图中看到的那样,我推送一个新视图“类别”,当点击一个项目并为其分配一个新标题时,得到“categoryId”,现在一切正常。现在在“类别”视图中,我以这种方式显示所有“子类别 ID”:
var dataview = Ext.create('Ext.dataview.DataView', {
store: myStore,
itemTpl: '<tpl for="children.child"><div class="category-thumb">SubcategoryID: {subcategoryId}</div></tpl>',
...
现在的问题是如何在 itemTap 中推送一个新视图“产品”,将标题设置为“子类别 ID”我有这个:
listeners: {
itemtap: function(list, index, target, record){
this.up('main').push({
xtype: 'products',
title: record.get('subcategoryId'),
})
}
}
问题是
title: record.get('subcategoryId'),
不起作用,我想是因为它嵌套在 json 中,我想我必须做一些循环,但我不知道怎么做。
再次在“产品”中遇到同样的问题我怎样才能获得“产品ID”