乐趣区

responsetotals-undefinedplease-check-totalsKey

在使用 GridManager 的时候,有时会出现以下错误:

GridManager Error: response.totals undefined,please check totalsKey

解决方法
这个错误是由于的返回的数据中未找到 totals 字段,并提示检查配置项totalsKey

如果 totalsKey 与接口返回字段不匹配,那么组件通过 totalsKey 获取到的将是undefined

比如接口返回格式如下:

{
    list: [{name:'baukh', age: 11},
    {name:'baukh2', age: 22}
    ],
    sum: 2
}

由于 totalsKey 默认值为 totals,当接口返回的总条数字段为sum 时就需要在初始化时添加配置项: totalsKey: 'sum'

详情可参考 API – totalsKey

如果当前未配置 totalsKey: 'sum',将会报出GridManager Error: response.totals undefined,please check totalsKey 错误。

除此之外配置项 responseHandler 也可以处理该问题,但 responseHandler 一般用于处理更为复杂的情况。

详情可参考 API – responseHandler

退出移动版