作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个来自 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/
我是一名优秀的程序员,十分优秀!