我的适配器“findQuery”中有函数需要从服务器获取数据并返回它。
功能:
findQuery: function(store, type, query) {
var userId = query['user_id'];
delete query['user_id'];
if (this.sortQueryParams) {
query = this.sortQueryParams(query);
}
var adapter = this;
// Create nested url
//return this.ajax(this.urlPrefix(this.pathForType(type.typeKey), this.buildURL(type, userId)), 'GET', { data: query });
// We would like to relate the rows to the connected user
return new Ember.RSVP.Promise(function(resolve, reject) {
adapter.ajax(adapter.buildURL(type.typeKey, null, userId), 'GET', { data: query }).then(function(devices) {
store.find('user', userId).then(function(user) {
devices.setEach('user_id', user);
resolve(devices); // devices is set exactly as i wanted!
}, function(failed) {
reject(failed);
});
}, function(error) {
reject(error);
});
});
}
因此,当我调试函数时,我看到该函数使用正确的数据进入解析(API 将所有请求的数据作为对象数组返回)。然后我得到日志错误:
错误:断言失败:来自 findQuery 的响应必须是数组,而不是未定义的
更新
问题已解决,但我仍然不明白为什么会发生。
发生什么事?
我在 store-injector 文件中设置
inflector.irregular('general_device', 'devices');
这为我解决了看起来像这样的 api 端点:
虽然在某种程度上它有一些冲突,但我尝试使用上述函数解析一个 url,如下所示:
它解决了,但我找不到它发生的原因,这是有道理的,但我仍然希望有人能解释它发生的原因。