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.
ストアがあり、そこからレコードを正常にロードしています。ここで、その中のすべてのレコードをクリアする必要があります。これどうやってするの ?
myStore.remove(); // DID NOT WORK myStore.clear(); // ENDED UP WITH AN ERROR TypeError: myStore.clear is not a function
どうすればこれを解決できますか?
Remove は、渡したレコードを削除します。 removeAll が必要ですmyStore.removeAll();
myStore.removeAll();
myStore.loadData([],false);が解決策です。
myStore.loadData([],false);