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.
监听beforeSync商店的事件。选项参数具有要同步的所有记录的哈希,分解为创建、更新和销毁。
beforeSync
我需要根据他们的模型验证规则来验证它们。
是否可以?
我试过了,但它总是返回 true:
Ext.Array.forEach(options.create, function (item) { console.log(item.isValid()); });
谢谢
我刚刚意识到无效记录没有被插入到要同步的记录哈希中(选项参数)。
相反,我可以遍历商店的商品:
Ext.Array.forEach(st.data.items, function (item) { console.log(item.isValid()) } );