我试图在商店中搜索不同的记录。
我使用的是localStorage适配器。
但不知怎的,第二次搜索永远不会结束。
getUsers = this.store.find('user',{...});
getRooms = this.store.find('room',{...});
getUsers.then(function(){
//runs
});
getRooms.then(function(){
//doesn't run
}, function(){
//runs, but has no arguments to check for an error.
});