-1

我正在 Sencha Touch 2.0 中开发一个应用程序,它应该通过驻留在不同域中的 Web 服务来解析 JSON。

我被困在解析 JSON 中。如果我使用名称为title,author description link等的节点,那么它可以完美运行。

但是,如果我对节点使用其他名称,则它不会显示任何内容。

这是我试图解析的 JSON 响应:

http://stassuet.byethost15.com/services/test/index.php

这就是我在 Sencha 应用程序中解析响应的方法:

Ext.define('GS.store.MyStore', {
    extend: 'Ext.data.Store',

    requires: [
        'GS.model.MainEvent',
        'Ext.data.proxy.JsonP',
        'Ext.data.proxy.Rest'
        //'GS.util.JsonpX'
    ],

    config: {
        autoLoad: true,
        model: 'GS.model.MainEvent',
        storeId: '55',

        headers: {
            "Accept": "text/xml"
            //"access-control-allow-origin": "*",
            //"Origin": "goodnews.pk",
            //"Referer": "goodnews.pk"
        },

        method: 'GET',
        callbackKey: 'myFunction',

        proxy: {
            type: 'jsonp',
            url: 'http://stassuet.byethost15.com/services/test/index.php',

            reader: {
                type: 'json',
                rootProperty: 'albums.images'
            }
        }
    }
});

我哪里错了?

4

1 回答 1

0

即使您不需要它们,您似乎也设置了很多配置。例如:

  • 标题
  • 方法
  • 回调键

是否有一个原因?

无论如何,使用这个类,一切都应该加载:

Ext.define('Example.store.SO', {
    extend: 'Ext.data.Store',

    config: {
        autoLoad: true,
        fields: [
            'name',
            'author',
            'last_modified'
        ],
        proxy: {
            type: 'jsonp',
            url: 'http://stassuet.byethost15.com/services/test/index.php',
            reader: {
                rootProperty: 'albums.images'
            }
        }
    }
});
于 2012-09-11T22:19:01.637 回答