model的关联关系处理
编辑教程model的关联关系处理
在前面Ember.js 入门指南之三十八定义模型中介绍过模型之前的关系。主要包括一对一、一对多、多对多关系。但是还没介绍两个有关联关系模型的更新、删除等操作。
为了测试新建两个模型类。
- ember g model post
- ember g model comment
创建关系记录
// app/models/post.js
import DS from 'ember-data';
export default DS.Model.extend({
comments: DS.hasMany('comment')
});
// app/model/comment.js
import DS from 'ember-data';
export default DS.Model.extend({
post: DS.belongsTo('post')
});
设置关联,关系的维护放在多的一方comment上。
let post = this.store.peekRecord('post', 1);
let comment = this.store.createRecord('comment', {
post: post
});
comment.save();
保存之后post会自动关联到comment上(保存post的id属性值到post属性上)。
当然啦,你可以在从post上设置关联关系。比如下面的代码:
let post = this.store.peekRecord('post', 1);
let comment = this.store.createRecord('comment', {
// 设置属性值
});
// 手动吧对象设置到post数组中。(post是多的一方,comments属性应该是保存关系的数组)
post.get('comments').pushObject(comment);
comment.save();
如果你学过Java里的hibernate框架我相信你很容易就能理解这段代码。
可以想象 post是一的一方,如果它要维护关系是不是要把与其关联的comment的id保存到comments属性(数组)上,因为一个post可以关联多个comment,所以comments属性应该是一个数组。
更新已经存在的记录
更新关联关系与创建关联关系几乎是一样的。也是首先获取需要关联的模型在设置它们的关联关系。
let post = this.store.peekRecord('post', 100);
let comment = this.store.peekRecord('comment', 1);
comment.set('psot', post); // 重新设置comment与post的关系
comment.save(); // 保存关联的关系
假设原来comment关联的post是id为1的数据,现在重新更新为comment关联id为100的post数据。
如果是从post方更新,那么可以像下面的代码这样:
let post = this.store.peekRecord('post', 100);
let comment this.store.peekRecord('comment', 1);
post.get('comments').pushObject(comment); // 设置关联
post.save(); // 保存关联
删除关联关系
既然有新增关系自然也会有删除关联关系。 如果要移除两个模型的关联关系,只需要把关联的属性值设置为null就可以了。
let comment = this.store.peekRecord('comment', 1);
comment.set('post', null); //解除关联关系
comment.save();
当然你也可以从一的一方移除关联关系。
let post = this.store.peekRecord('post', 1);
let comment = this.store.peekRecord('comment', 1);
post.get('comments').removeObject(comment); // 从关联数组中移除comment
post.save();
从一的一方维护关系其实就是在维护关联的数组元素。
只要Store改变了Handlebars模板就会自动更新页面显示的数据,并且在适当的时期Ember Data会自动更新到服务器上。
Mos固件,小电视必刷固件
ES6 教程
Vue.js 教程
JSON 教程
jQuery 教程
HTML 教程
HTML 5 教程
CSS 教程
CSS3 教程
JavaScript 教程
DHTML 教程
JSON在线格式化工具
JS在线运行
JSON解析格式化
jsfiddle中国国内版本
JS代码在线运行
PHP代码在线运行
Java代码在线运行
C语言代码在线运行
C++代码在线运行
Python代码在线运行
Go语言代码在线运行
C#代码在线运行
JSRUN闪电教程系统是国内最先开创的教程维护系统, 所有工程师都可以参与共同维护的闪电教程,让知识的积累变得统一完整、自成体系。
大家可以一起参与进共编,让零散的知识点帮助更多的人。
X
选择支付方式:
立即支付
¥
9.99
无法付款,请点击这里
金额: 0 元
备注:
转账时请填写正确的金额和备注信息,到账由人工处理,可能需要较长时间
备注:
转账时请填写正确的金额和备注信息,到账由人工处理,可能需要较长时间
如有疑问请联系QQ:565830900
正在生成二维码, 此过程可能需要15秒钟