Sencha Touch:Ext.DataView不显示商店数据

时间:2011-06-23 19:36:16

标签: sencha-touch

我知道DataView为空的典型原因是因为模型或JSON是错误的。据我所知,我的是正确的......所以我不确定为什么我的DataView是空白的。

控制器

rpc.controllers.AboutController = new Ext.Panel({
    id: 'rpc-controllers-AboutController',
    title: 'About',
    iconCls: 'info',
    layout: 'card',
    scroll: 'vertical',
    items: [rpc.views.About.index],
    dockedItems: [{ xtype: 'toolbar',
        title: 'RockPointe Church | Mobile'
    }],
    listeners: {
        activate: function () {
            if (rpc.stores.AboutStore.getCount() === 0) {
                rpc.stores.AboutStore.load();
            }
        }
    }
});

查看

rpc.views.About.index = new Ext.DataView({
    id: 'rpc-views-about-index',
    itemSelector: 'div.about-index',
    tpl: '<tpl for="."><div class="about-index">{html}</div></tpl>',
    store: rpc.stores.AboutStore,
    fullscreen: true,
    scroll: 'vertical'
});

商品

rpc.stores.AboutStore = new Ext.data.Store({
    id: 'rpc-stores-aboutstore',
    model: 'rpc.models.AboutModel',
    autoLoad: true,
    proxy: {
        type: 'scripttag',
        url: WebService('About', 'Index'),
        method: 'GET',
        reader: {
            type: 'json',
            root: 'results'
        },
        afterRequest: function (request, success) {
            if (success) {
                console.log("success");
            } else {
                console.log("failed");
            }
            console.log(request);
        }
    }
});

rpc.stores.AboutStore.proxy.addListener('exception', function (proxy, response, operation) {
    console.log(response.status);
    console.log(response.responseText);
});

模型

rpc.models.AboutModel = Ext.regModel('rpc.models.AboutModel', {
    fields: ['html']
});

JSON

  

mycallback({“results”:{“html”:“...内容已移除以简洁......”},“成功”:true});

有谁能看到我在这里做错了什么?

没有控制台/ javascript错误。资源显示我实际上是从WebService中提取JSON。

如果我在console.log(rpc.stores.AboutStore.getCount());的{​​{1}}听众中使用activate,结果总是 0 ,我不完全确定为什么

如果您想查看请求,请使用此暂存应用 http://rpcm.infinitas.ws/(请注意,此链接将在某个时候到期)

1 个答案:

答案 0 :(得分:1)

尝试将json值作为数组而不是对象返回。我认为Ext期待的是一系列记录,而不仅仅是一个。

例如

“{results:[{”html“:”your html“}]}”