json嵌套,怎样取出数据显示在grid中
2个回答
展开全部
你将你的store改成这样看看
var simpleItem_store= new Ext.data.Store( {
url : '../../jsp/item/querySimpleItemRst.jsp',
reader : new Ext.data.JsonReader(
{root : 'records'},
[{
name : 'item_code',
type : 'string'
}, {
name : 'item_name',
type : 'string'
},{
name:'wlgroup',
type:'string'
},{
name:'wmgroup',
type:'string'
}])
})
var simpleItem_store= new Ext.data.Store( {
url : '../../jsp/item/querySimpleItemRst.jsp',
reader : new Ext.data.JsonReader(
{root : 'records'},
[{
name : 'item_code',
type : 'string'
}, {
name : 'item_name',
type : 'string'
},{
name:'wlgroup',
type:'string'
},{
name:'wmgroup',
type:'string'
}])
})
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Ext.define('MyExtJS.model.MenuModel', {
extend : 'Ext.data.Model',
fields : [{
name : 'id',
mapping : 'id'
}
, 'name', 'isOpen', 'count',
{
name : 'type',
mapping : 'surveyType.name'
},{
name : 'createTime',
mapping : 'createTime',
type : 'date',
dateFormat : 'timestamp'
}, {
name : 'publishTime',
mapping : 'publishTime',
type : 'date',
dateFormat : 'timestamp'
}, 'password', 'isGrade']
});
extend : 'Ext.data.Model',
fields : [{
name : 'id',
mapping : 'id'
}
, 'name', 'isOpen', 'count',
{
name : 'type',
mapping : 'surveyType.name'
},{
name : 'createTime',
mapping : 'createTime',
type : 'date',
dateFormat : 'timestamp'
}, {
name : 'publishTime',
mapping : 'publishTime',
type : 'date',
dateFormat : 'timestamp'
}, 'password', 'isGrade']
});
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询