gpt4 book ai didi

json - 如何将JSON转换为存储对象?

转载 作者:行者123 更新时间:2023-12-02 05:56:59 25 4
gpt4 key购买 nike

我有一个来自 Spring 后端的 JSON 对象。如何在我的 Ember 应用程序商店中创建数据对象?

我尝试过:

createObject() {
var _this = this;
$.getJSON('http://localhost:8080/object/getCard?id=24').then(function(response) {
_this.store.createRecord('cards/object/card', response);
});
}

JSON:

{
"id":24,
"fullName":"qwerty",
"form":"zzzzzzzzzzzz",
"leader": {
"id":23,
"fullName":"testName test",
"email":"emailTest"
}
}

我在 Ember 应用程序中有一个模型

export default DS.Model.extend({
fullName: DS.attr('String'),
form: DS.attr('String'),
leader: DS.belongsTo('contact', { async: true })
}

和联系方式:

export default DS.Model.extend({
fullName: DS.attr('String'),
email: DS.attr('String')
});

最佳答案

您应该使用store.pushPayload相反,因为该记录已存在于后端:

createObject() {
$.getJSON('http://localhost:8080/object/getCard?id=24').then((response) => {
this.store.pushPayload(response);
});
}

关于json - 如何将JSON转换为存储对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35356454/

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