2

此 JSON 通过jsonlint验证。然而 Firefox 和 Chrome 拒绝它:

{
    "messages": [
        {
            "subject": "One"
        },
        {
            "subject": "Two"
        },
        {
            "subject": "Three"
        }
    ],
    "totalResults": 10
}

错误消息是“消息”上的“无效标签”。

这是它的加载方式:

var store = Ext.create('Ext.data.Store', {
    model: 'MyModel',
    autoLoad: true,
    pageSize: 3,
    proxy: {
        type: 'jsonp',
        url: 'http://localhost:8080/document-viewer-1.0/testdata.json',
        reader: {
            root: 'messages',
            totalProperty: 'totalResults'
        }
    }
});

答案

这是我自己的愚蠢错误。我没有将 JSONP 回调名称放在 JSON 文件结构周围。

4

1 回答 1

8

你所拥有的是有效的 JSON,但它不是有效的 JSON P

你需要改变

type: 'jsonp',

type: 'json',
于 2012-01-09T15:27:13.157 回答