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.
我想使用 删除 ExtJS4.1 中的 Storeitem store.remove(item),但我不想向服务器发送删除请求。
store.remove(item)
在商店代理 api 中,我只定义了 read-Url:
api: { read: '/daten/zhalter' }
现在,当我删除该项目时,会引发 javascript 错误。我发现它的出现是因为我没有定义 destroy-url,当我定义一个时,一切都很好。
我的问题是:如何在不发送删除请求的情况下删除项目?
我自己找到了答案。我autosync关闭了该命令:
autosync
quellStore.autoSync = 假; quellStore.remove(项目); quellStore.autoSync = true;
您应该添加销毁属性:
api: {destory: 'url/delete'}
然后使用:
store.sync();