gpt4 book ai didi

node.js - 从 Node + Express REST 服务器获取 JSON 时 Ember 数据中断

转载 作者:太空宇宙 更新时间:2023-11-04 00:59:18 24 4
gpt4 key购买 nike

我正在尝试从使用 Node.js 和 Express 构建的 REST 服务器获取 JSON 数据,然后将其用作我的 Ember#Route 中的模型。

我试图获取的数据:

var books = [
{ id: 98, author: 'Stanisław Lem', title: 'Solaris' },
{ id: 99, author: 'Andrzej Sapkowski', title: 'Wiedźmin' }
];

我使用的模型:

App.Book = DS.Model.extend({
id: DS.attr('number'),
author: DS.attr('string'),
title: DS.attr('string')
});

我这样设置 RESTAdapter:

App.ApplicationAdapter = DS.RESTAdapter.extend({
host: 'http://localhost:8080'
});

映射:

App.Router.map(function () {
this.resource("books");
});

我的路线如下所示:

App.BooksRoute = Ember.Route.extend({
model: function () {
return this.store.find('book');
}
});

我知道 ember-data 在 JSON 文件方面遵循一定的约定。我的服务器以这种方式提供 JSON:

app.get('/books', function (request, response) {
console.log('In GET function ');
response.json({'books': books})
});

然后,进入后

http://localhost:8080/books

我明白

{"books":[{"id":98,"author":"Stanisław Lem","title":"Solaris"},{"id":99,"author":"Andrzej Sapkowski","title":"Wiedźmin"}]}

但是当我输入

http://localhost:8080/#/books

ember-data 抛出长错误列表,开头为:

"Error while processing route: books" "invalid 'in' operand record._attributes"    
"ember$data$lib$system$model$attributes$$getValue@http://localhost:8080/static/ember-data.js:8176:1
ember$data$lib$system$model$attributes$$attr/<@http://localhost:8080/static/ember-data.js:8202:26
computedPropertySet@http://localhost:8080/static/ember.prod.js:11882:15
computedPropertySetWithSuspend@http://localhost:8080/static/ember.prod.js:11842:9
makeCtor/Class@http://localhost:8080/static/ember.prod.js:33887:17
...

现在我不知道出了什么问题以及如何解决这个问题。

最佳答案

看起来我犯的错误是在声明模型时。 ID 属性不应该在这里声明,正确的模型如下所示:

App.Book = DS.Model.extend({
author: DS.attr('string'),
title: DS.attr('string')
});

关于node.js - 从 Node + Express REST 服务器获取 JSON 时 Ember 数据中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27766714/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com