1

请帮我解决这个问题..我花了太多时间来整理它..我有一个 json 文件我想在数据视图中显示它..我可以显示父值但无法获取子节点

这是我的 json 格式

{
    "items": [
        {
            "name": "Science Gallery",

            "menu": [
                {
                    "commenttext": "SC Sandwich"
                },
                {
                    "commenttext": "SC Toasted Sandwich"
                },
                {
                    "commenttext": "SC Panini"
                },
                {
                    "commenttext": "SC Ciabatta"
                },
                {
                    "commenttext": "SC Burrito"
                }
            ]
        }

    ]
}

这是我的视图 /** * TouchCalendar.view.EventListPanel */

Ext.define('WinReo.view.PropertyDetailsView', {
    extend: 'Ext.Panel',

    requires: [
        'Ext.dataview.List',
        'Ext.layout.Fit'
    ],

    alias: 'widget.propertydetailsview',
    id:'propertydetailsview',
    config: {
        // title   : 'Events List',
        layout  : 'fit',
        store:'WinReo.store.PropertyDetails',
        id:'propertydetailsview',
        cls:'propertydetailscss',


    },

    initialize: function(){


       var listadd =  Ext.create('Ext.DataView', {
            fullscreen: true,
            id: 'ListePieces',
           //itemTpl:  listTemplate,
           //data:[],
           itemTpl: [
               '{name}',
               '<div>',
               '<h2><b>Menu</b></h2>',
               '<tpl for="menu">',
               '<div>{item}</div>',
               '</tpl>',
               '</div>'
           ].join(''),

           loadingText: 'Loading...',
           store: storedetails
           /*listeners:{
               itemtap: function(record, index){

                alert('hi');
               }
           }*/

        });
        this.add(listadd);


    }

});

这是我的模型

Ext.define('WinReo.model.PropertyDetailsModel', {
    extend: 'Ext.data.Model',
   // requires: ['WinReo.model.PropertyDetailsModelComments'],
    config: {
        fields: [

            {name: 'name'},
            {name: 'commenttext'},
            {name: 'item'}


        ]
    }


});

这是我的商店

Ext.define('WinReo.store.PropertyDetails', {
    extend: 'Ext.data.Store',
    requires: [
        'WinReo.model.PropertyDetailsModel',

        'Ext.data.Store',
        'Ext.dataview.DataView',
        'Ext.data.NodeStore',
        'Ext.data.TreeStore'
    ],

    config: {
        storeId: 'propertydetails',
        defaultRootProperty: 'items',
        model: 'WinReo.model.PropertyDetailsModel',
        autoLoad: true,


        proxy: {

            type: 'ajax',
            method:'post',
            url: 'resources/data/fullproperty.json',
            //url: apiurl+'PropertyList.ashx?switch=GetPIP&reoid=',

            reader: {
                type: 'json',
                rootProperty: 'items'

            }
        }


    }

});

我可以用 noram 模型显示这个嵌套的 json,是否需要任何模型关联?

请帮助...非常感谢您的帮助..在此先感谢

4

1 回答 1

0

如下更改商店中的代理设置。我删除了“rootProperty”并添加了“记录”

proxy: {
type: 'ajax',
method:'post',
url: 'resources/data/fullproperty.json',
//url: apiurl+'PropertyList.ashx?switch=GetPIP&reoid=',
reader: {
    type: 'json',
    record: 'items'
}

}

于 2014-01-24T10:53:32.827 回答