0

我想使用分页工具栏但有一个问题。我不提供服务,所以我需要使用我拥有的 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'
     }
   },

那没有用。建议?

4

1 回答 1

1

您的格式错误,因为总数在每个数组元素内。Unfurtunatellly 你需要改变你的格式。您可以尝试以下方法:

// inside your reader (gets the totalCount of the first array element)
totalProperty: 'Weather[0].totalCount'

但这确实不是正确的选择,因为让每个数组元素具有相同的计数是没有意义的,您不同意吗?

于 2012-07-18T14:39:13.650 回答