我正在 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'
}
}
}
});
我哪里错了?