Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个组合字段,queryMode: 'remote'并且商店的结构类似于:
queryMode: 'remote'
{ success: true, data: [ {'name':'john','value':1}, {'name':'mary','value':2} ] }
如果需要,如何在将数据数组加载到组合列表之前删除数据数组的第一个元素?
我尝试捕获load事件并拼接数据数组,但似乎没有成功。在此线程中发布的上下文中的解决方案确实很有帮助。
load
首先,删除 UI 中的第一个元素是有问题的,如果您决定通过 Web 服务公开您的服务,那么删除第一个元素的逻辑将不存在。
话虽这么说,我认为您可以聆听该load事件并做store.removeAt(0)
store.removeAt(0)
覆盖存储中读取器的 getData。