在Ember商店进行多次搜索?

时间:2014-09-03 16:35:57

标签: ember.js ember-data

我试图在商店中搜索不同的记录。

我使用的是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.
});

0 个答案:

没有答案