W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
在前面Ember.js 入門指南之三十八定義模型中介紹過模型之前的關(guān)系。主要包括一對(duì)一、一對(duì)多、多對(duì)多關(guān)系。但是還沒介紹兩個(gè)有關(guān)聯(lián)關(guān)系模型的更新、刪除等操作。
為了測試新建兩個(gè)模型類。
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')
});
設(shè)置關(guān)聯(lián),關(guān)系的維護(hù)放在多的一方comment
上。
let post = this.store.peekRecord('post', 1);
let comment = this.store.createRecord('comment', {
post: post
});
comment.save();
保存之后post
會(huì)自動(dòng)關(guān)聯(lián)到comment
上(保存post
的id
屬性值到post
屬性上)。
當(dāng)然啦,你可以在從post
上設(shè)置關(guān)聯(lián)關(guān)系。比如下面的代碼:
let post = this.store.peekRecord('post', 1);
let comment = this.store.createRecord('comment', {
// 設(shè)置屬性值
});
// 手動(dòng)吧對(duì)象設(shè)置到post數(shù)組中。(post是多的一方,comments屬性應(yīng)該是保存關(guān)系的數(shù)組)
post.get('comments').pushObject(comment);
comment.save();
如果你學(xué)過Java里的hibernate框架我相信你很容易就能理解這段代碼。你可以想象,post
是一的一方,如果它要維護(hù)關(guān)系是不是要把與其關(guān)聯(lián)的comment
的id
保存到comments
屬性(數(shù)組)上,因?yàn)橐粋€(gè)post
可以關(guān)聯(lián)多個(gè)comment
,所以comments
屬性應(yīng)該是一個(gè)數(shù)組。
更新關(guān)聯(lián)關(guān)系與創(chuàng)建關(guān)聯(lián)關(guān)系幾乎是一樣的。也是首先獲取需要關(guān)聯(lián)的模型在設(shè)置它們的關(guān)聯(lián)關(guān)系。
let post = this.store.peekRecord('post', 100);
let comment = this.store.peekRecord('comment', 1);
comment.set('psot', post); // 重新設(shè)置comment與post的關(guān)系
comment.save(); // 保存關(guān)聯(lián)的關(guān)系
假設(shè)原來comment
關(guān)聯(lián)的post
是id
為1
的數(shù)據(jù),現(xiàn)在重新更新為comment
關(guān)聯(lián)id
為100
的post
數(shù)據(jù)。
如果是從post
方更新,那么你可以像下面的代碼這樣:
let post = this.store.peekRecord('post', 100);
let comment this.store.peekRecord('comment', 1);
post.get('comments').pushObject(comment); // 設(shè)置關(guān)聯(lián)
post.save(); // 保存關(guān)聯(lián)
既然有新增關(guān)系自然也會(huì)有刪除關(guān)聯(lián)關(guān)系。
如果要移除兩個(gè)模型的關(guān)聯(lián)關(guān)系,只需要把關(guān)聯(lián)的屬性值設(shè)置為null
就可以了。
let comment = this.store.peekRecord('comment', 1);
comment.set('post', null); //解除關(guān)聯(lián)關(guān)系
comment.save();
當(dāng)然你也可以從一的一方移除關(guān)聯(lián)關(guān)系。
let post = this.store.peekRecord('post', 1);
let comment = this.store.peekRecord('comment', 1);
post.get('comments').removeObject(comment); // 從關(guān)聯(lián)數(shù)組中移除comment
post.save();
從一的一方維護(hù)關(guān)系其實(shí)就是在維護(hù)關(guān)聯(lián)的數(shù)組元素。
只要Store改變了Handlebars模板就會(huì)自動(dòng)更新頁面顯示的數(shù)據(jù),并且在適當(dāng)?shù)臅r(shí)期Ember Data會(huì)自動(dòng)更新到服務(wù)器上。
有關(guān)于模型之間關(guān)系的維護(hù)就介紹到這里,它們之間關(guān)系的維護(hù)只有兩種方式,一種是用一的一方維護(hù),另一種是用多的一方維護(hù),相比來說,從一的一方維護(hù)更簡單。但是如果你需要一次性更新多個(gè)紀(jì)錄的關(guān)聯(lián)時(shí)使用第二種方式更加合適(都是針對(duì)數(shù)組操作)。
博文完整代碼放在Github(博文經(jīng)過多次修改,博文上的代碼與github代碼可能有出入,不過影響不大?。绻阌X得博文對(duì)你有點(diǎn)用,請(qǐng)?jiān)趃ithub項(xiàng)目上給我點(diǎn)個(gè)star
吧。您的肯定對(duì)我來說是最大的動(dòng)力?。?/p>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: