0

我已经定义了 TreeStore-Implementation 但在 FireBug 中我没有看到对我的服务器的请求,也没有看到数据。如果我取消注释根属性并注释掉代理属性,我的数据就会显示出来。可能是什么原因?

谢谢!

Ext.define('PM.store.Projects', {
    extend: 'Ext.data.TreeStore',
    model: 'PM.model.Project',

    proxy: {
        type: 'ajax',
        url: 'data/projectTree.json',
    }

    /*root: {
        name: 'Demo',
        children: [
            {
                name: 'Test',
                leaf: true,
            },
        ],
    },*/
});
4

1 回答 1

0

您必须显式加载商店。尝试 autoLoad: true 看看它是否会发出请求。

于 2014-01-18T06:13:26.133 回答