此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文件结构周围。
答案 0 :(得分:8)
你拥有的是有效的JSON,但它无效JSON P
您需要更改
type: 'jsonp',
到
type: 'json',