extjs 数组读取器
我正在尝试使用数组读取器创建数据存储。在每条记录中,都有一个字段数组。但是,我只需要记录中的一些字段。如何设置数组读取器以便只有部分记录映射到数据存储?
I'm trying to create a data store with an array reader. in each of the record, there is an array of fields. However, I only need some of the fields in the record. How can I setup the array reader so that only part of the record is mapped to the data store?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于读取器中的每个字段,只需添加一个“映射”项并将其设置为等于该项在数组中的索引。例如:
这将排除第二列(从零开始的索引)
For each field in the reader, just add a 'mapping' item and set it equal to the index of the item in the array it is for. eg:
This will exclude the 2nd column (zero based index)