前一篇介紹了查詢(xún)方法,本篇介紹新建、更新、刪除記錄的方法。
本篇的示例代碼創(chuàng)建在上一篇的基礎(chǔ)上。對(duì)于整合firebase、創(chuàng)建route
和template
請(qǐng)參看上一篇,增加一個(gè)controller:ember g controller articles
。
創(chuàng)建新的記錄使用createRecord()
方法。比如下面的代碼新建了一個(gè)aritcle
記錄。修改模板,在模板上增加幾個(gè)input
輸入框用于輸入article
信息。
<div class="container">
<div class="row">
<div class="col-md-4 col-xs-4">
<ul class="list-group">
{{#each model as |item|}}
<li class="list-group-item">
{{#link-to 'articles.article' item.id}}
{{item.title}} -- <small>{{item.category}}</small>
{{/link-to}}
</li>
{{/each}}
</ul>
<div>
title:{{input value=title}}<br>
body: {{textarea value=body cols="80" rows="3"}}<br>
category: {{input value=category}}<br>
<button {{ action "saveItem"}}>保存</button>
<font color='red'>{{tipInfo}}</font>
</div>
</div>
<div class="col-md-8 col-xs-8">
{{outlet}}
</div>
</div>
</div>
頁(yè)面的字段分別對(duì)應(yīng)這模型article
的屬性。點(diǎn)擊“保存”后提交到controller
處理。下面是獲取數(shù)據(jù)保存數(shù)據(jù)的controller
。
// app/controllers/articles.js
import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
// 表單提交,保存數(shù)據(jù)到Store。Store會(huì)自動(dòng)更新到firebase
saveItem: function() {
var title = this.get('title');
if ('undefined' === typeof(title) || '' === title.trim()) {
this.set('tipInfo', "title不能為空");
return ;
}
var body = this.get('body');
if ('undefined' === typeof(body) || '' === body.trim()) {
this.set('tipInfo', "body不能為空");
return ;
}
var category = this.get('category');
if ('undefined' === typeof(category) || '' === category.trim()) {
this.set('tipInfo', "category不能為空");
return ;
}
// 創(chuàng)建數(shù)據(jù)記錄
var article = this.store.createRecord('article', {
title: title,
body: body,
category: category,
timestamp: new Date().getTime()
});
article.save(); //保存數(shù)據(jù)的到Store
// 清空頁(yè)面的input輸入框
this.set('title', "");
this.set('body', "");
this.set('category', "");
}
}
});
主要看createRecord
方法,第一個(gè)參數(shù)是模型名稱(chēng)。第二個(gè)參數(shù)是個(gè)哈希,在哈??傇O(shè)置模型屬性值。最后調(diào)用article.save()
方法把數(shù)據(jù)保存到Store
,再由Store
保存到firebase。運(yùn)行效果如下圖:
輸入信息,點(diǎn)擊“保存”后數(shù)據(jù)立刻會(huì)顯示在列表”no form -- java”之后。然后你可以點(diǎn)擊標(biāo)題查詢(xún)?cè)敿?xì)信息,body的信息會(huì)在頁(yè)面后側(cè)顯示。
通過(guò)這里實(shí)例我想你應(yīng)該懂得去使用createRecord()
方法了!但是如果有兩個(gè)模型是有關(guān)聯(lián)關(guān)系保存的方法又是怎么樣的呢?下面再新增一個(gè)模型。
ember g model users
然后在模型中增加關(guān)聯(lián)。
// app/models/article.js
import DS from 'ember-data';
export default DS.Model.extend({
title: DS.attr('string'),
body: DS.attr('string'),
timestamp: DS.attr('number'),
category: DS.attr('string'),
author: DS.belongsTo('user') //關(guān)聯(lián)user
});
// app/models/user.js
import DS from 'ember-data';
export default DS.Model.extend({
username: DS.attr('string'),
timestamp: DS.attr('number'),
articles: DS.hasMany('article') //關(guān)聯(lián)article
});
修改模板articles.hbs
在界面上增加錄入作者信息字段。
……省略其他代碼
<div>
title:{{input value=title}}<br>
body: {{textarea value=body cols="80" rows="3"}}<br>
category: {{input value=category}}<br>
<br>
author: {{input value=username}}<br>
<button {{ action "saveItem"}}>保存</button>
<font color='red'>{{tipInfo}}</font>
</div>
……省略其他代碼
下面看看怎么在controller
中設(shè)置這兩個(gè)模型的關(guān)聯(lián)關(guān)系。一共有兩種方式設(shè)置,一種是直接在createRecord()
方法中設(shè)置,另一種是在方法外設(shè)置。
// app/controllers/articles.js
import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
// 表單提交,保存數(shù)據(jù)到Store。Store會(huì)自動(dòng)更新到firebase
saveItem: function() {
// 獲取信息和校驗(yàn)代碼省略……
// 創(chuàng)建user
var user = this.store.createRecord('user', {
username: username,
timestamp: new Date().getTime()
});
// 必須要執(zhí)行這句代碼,否則user數(shù)據(jù)不能保存到Store,
// 否則article通過(guò)user的id查找不到user
user.save();
// 創(chuàng)建article
var article = this.store.createRecord('article', {
title: title,
body: body,
category: category,
timestamp: new Date().getTime(),
author: user //設(shè)置關(guān)聯(lián)
});
article.save(); //保存數(shù)據(jù)的到Store
// 清空頁(yè)面的input輸入框
this.set('title', "");
this.set('body', "");
this.set('category', "");
this.set('username', "");
}
}
});
輸入上如所示信息,點(diǎn)擊“保存”可以在firebase的后臺(tái)看到如下的數(shù)據(jù)關(guān)聯(lián)關(guān)系。
注意點(diǎn):與這兩個(gè)數(shù)據(jù)的關(guān)聯(lián)是通過(guò)數(shù)據(jù)的id
維護(hù)的。
那么如果我要通過(guò)article
獲取user
的信息要怎么獲取呢?
直接以面向?qū)ο蟮姆绞将@取既可。
{{#each model as |item|}}
<li class="list-group-item">
{{#link-to 'articles.article' item.id}}
{{item.title}} -- <small>{{item.category}}</small> -- <small>{{item.author.username}}</small>
{{/link-to}}
</li>
{{/each}}
注意看助手{{ item.author.username }}
。很像EL表達(dá)式吧!!
前面提到過(guò)有兩個(gè)方式設(shè)置兩個(gè)模型的關(guān)聯(lián)關(guān)系。下面的代碼是第二種方式:
// 其他代碼省略……
// 創(chuàng)建article
var article = this.store.createRecord('article', {
title: title,
body: body,
category: category,
timestamp: new Date().getTime()
// ,
// author: user //設(shè)置關(guān)聯(lián)
});
// 第二種設(shè)置關(guān)聯(lián)關(guān)系方法,在外部手動(dòng)調(diào)用set方法設(shè)置
article.set('author', user);
// 其他代碼省略……
運(yùn)行,重新錄入信息,得到的結(jié)果是一致的。甚至你可以直接在createRecord
方法里調(diào)用方法來(lái)設(shè)置兩個(gè)模型的關(guān)系。比如下面的代碼段:
var store = this.store; // 由于作用域問(wèn)題,在createRecord方法內(nèi)部不能使用this.store
var article = this.store.createRecord('article', {
title: title,
// ……
// ,
// author: store.findRecord('user', 1) //設(shè)置關(guān)聯(lián)
});
// 第二種設(shè)置關(guān)聯(lián)關(guān)系方法,在外部手動(dòng)調(diào)用set方法設(shè)置
article.set('author', store.findRecord('user', 1));
這種方式可以直接動(dòng)態(tài)根據(jù)user的id屬性值獲取到記錄,再設(shè)置關(guān)聯(lián)關(guān)系。新增介紹完了,接著介紹記錄的更新。
更新相對(duì)于新增來(lái)說(shuō)非常相似。請(qǐng)看下面的代碼段:
首先在模板上增加更新的設(shè)置代碼,修改子模板articles/article.hbs
:
<h2>{{model.title}}</h2>
<div class = "body">
{{model.body}}
</div>
<div>
<br><hr>
更新測(cè)試<br>
title: {{input value=model.title}}<br>
body:<br> {{textarea value=model.body cols="80" rows="3"}}<br>
<button {{action 'updateArticleById' model.id}}>更新文章信息</button>
</div>
增加一個(gè)controller
,用戶(hù)處理子模板提交的修改信息。
ember g controller articles/article
// app/controllers/articles/article.js
import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
// 根據(jù)文章id更新
updateArticleById: function(params) {
var title = this.get('model.title');
var body = this.get('model.body');
this.store.findRecord('article', params).then(function(art) {
art.set('title', title);
art.set('body', body);
// 保存更新的值到Store
art.save();
});
}
}
});
在左側(cè)選擇需要更新的數(shù)據(jù),然后在右側(cè)輸入框中修改需要更新的數(shù)據(jù),在修改過(guò)程中可以看到被修改的信息會(huì)立即反應(yīng)到界面上,這個(gè)是因?yàn)镋mber自動(dòng)更新Store中的數(shù)據(jù)(還記得很久前講過(guò)的觀察者(observer)嗎?)。
如果你沒(méi)有點(diǎn)擊“更新文章信息”提交,你修改的信息不會(huì)更新到firebase。頁(yè)面刷新后還是原來(lái)樣子,如果你點(diǎn)擊了“更新文章信息”數(shù)據(jù)將會(huì)把更新的信息提交到firebase。
由于save
、findRecord
方法返回值是一個(gè)promises
對(duì)象,所以你還可以針對(duì)出錯(cuò)情況進(jìn)行處理。比如下面的代碼:
var user = this.store.createRecord('user', {
// ……
});
user.save().then(function(fulfill) {
// 保存成功
}).catch(function(error) {
// 保存失敗
});
this.store.findRecord('article', params).then(function(art) {
// ……
}).catch(function(error) {
// 出錯(cuò)處理代碼
});
具體代碼我就不演示了,請(qǐng)讀者自己編寫(xiě)測(cè)試吧?。?/p>
既然有了新增那么通常就會(huì)有刪除。記錄的刪除與修改非常類(lèi)似,也是首先查詢(xún)出要?jiǎng)h除的數(shù)據(jù),然后執(zhí)行刪除。
// app/controllers/articles.js
import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
// 表單提交,保存數(shù)據(jù)到Store。Store會(huì)自動(dòng)更新到firebase
saveItem: function() {
// 省略
},
// 根據(jù)id屬性值刪除數(shù)據(jù)
delById : function(params) {
// 任意獲取一個(gè)作為判斷表單輸入值
if (params && confirm("你確定要?jiǎng)h除這條數(shù)據(jù)嗎??")) {
// 執(zhí)行刪除
this.store.findRecord('article', params).then(function(art) {
art.destroyRecord();
alert('刪除成功!');
}, function(error) {
alert('刪除失?。?#39;);
});
} else {
return;
}
}
}
});
修改顯示數(shù)據(jù)的模板,增加刪除按鈕,并傳遞數(shù)據(jù)的id
值到controller
。
<div class="container">
<div class="row">
<div class="col-md-4 col-xs-4">
<ul class="list-group">
{{#each model as |item|}}
<li class="list-group-item">
{{#link-to 'articles.article' item.id}}
{{item.title}} -- <small>{{item.category}}</small> -- <small>{{item.author.username}}</small>
{{/link-to}}
<button {{action 'delById' item.id}}>刪除</button>
</li>
{{/each}}
</ul>
// ……省略其他代碼
</div>
</div>
結(jié)果如上圖,點(diǎn)擊第二條數(shù)據(jù)刪除按鈕。彈出提示窗口,點(diǎn)擊“確定”之后成功刪除數(shù)據(jù),并彈出“刪除成功!”,到firebase后臺(tái)查看數(shù)據(jù),確實(shí)已經(jīng)刪除成功。 然而與此關(guān)聯(lián)的user卻沒(méi)有刪除,正常情況下也應(yīng)該是不刪除關(guān)聯(lián)的user數(shù)據(jù)的。 最終結(jié)果只剩下一條數(shù)據(jù):
到此,有關(guān)新增、更新、刪除的方法介紹完畢。已經(jīng)給出了詳細(xì)的演示實(shí)例,我相信,如果你也親自在自己的項(xiàng)目中實(shí)踐過(guò),那么掌握這幾個(gè)方法是很容易的!
博文完整代碼放在Github(博文經(jīng)過(guò)多次修改,博文上的代碼與github代碼可能有出入,不過(guò)影響不大?。?,如果你覺(jué)得博文對(duì)你有點(diǎn)用,請(qǐng)?jiān)趃ithub項(xiàng)目上給我點(diǎn)個(gè)star
吧。您的肯定對(duì)我來(lái)說(shuō)是最大的動(dòng)力?。?/p>
更多建議: