我想使用分页工具栏但有一个问题。我不提供服务,所以我需要使用我拥有的 json。问题是 json 的格式与教程不同。
{
"Weather": [{
"totalCount": 2962,
some data
},{
"totalCount": 2962,
some data
}]
}
但在教程中我看到它应该是
{
"totalCount": 2962,
"Weather": [{
some data
},{
some data
}]
}
有没有办法可以使用我拥有的格式?我试图这样做:
proxy: {
type: 'ajax',
url: detailURL,
reader: {
type: 'json',
root: 'Weather',
totalProperty: 'Weather.totalCount'
}
},
那没有用。建议?