我想在添加
后自动更新评论列表问题是我从带有灯具的emberjs样本开始,我已经对其进行了修改,因此我可以在页面的开头获取当前数据。我还添加了通过ajax添加评论功能,所有这些都很有效。现在我只是不知道如何在添加后自动显示新评论。
这是我的应用代码:
window.Comments = Ember.Application.create();
Comments.Comment = DS.Model.extend({
content: DS.attr('string')
});
Comments.ApplicationController = Ember.ArrayController.extend({
rootElement: "#out",
actions: {
createComment: function () {
var title = $('#new-comment').val();
if (!title.trim()) { return; }
var comment = this.store.createRecord('comment', {
content: title
});
this.set('newContent', '');
comment.save();
}
}
});
Comments.commentsView = Ember.View.extend({
id: 'com',
layoutName: 'commentsTemplate',
comments: null,
init: function() {
console.log('init');
var par = this;
$.ajax({
url: "/getcomments",
type: "GET",
success: function(data) {
par.set("comments", data);
}
});
}
});
这是我的模板
<div id="out"></div>
<script type="text/x-handlebars">
<div class="container">
<div class="row">
<div class="col-xs-6">
{{#view Comments.commentsView}}{{/view}}
</div>
</div>
</div>
</script>
<script type="text/x-handlebars" data-template-name="commentsTemplate">
{{#each comment in view.comments}}
<div class="well">
<b>{{comment.content}}</b>
</div>
{{/each}}
<br />
{{input type="text" id="new-comment" placeholder="What you want to say?" value=newContent action="createComment"}}
</script>
顺便说一句。我var title = $('#new-comment').val();
因为this.get('newContent')
返回了未定义的值,所以我必须做点什么让它工作
答案 0 :(得分:1)
您正在使用商店来创建和保存新评论,但在视图初始化过程中使用原始json-request从服务器获取视图的comments
属性。
显然,您还需要使用商店来检索评论。在这种情况下,您的收藏将自动更新视图。
按惯例它应该在控制器中:
Comments.ApplicationController = Ember.ArrayController.extend({
rootElement: "#out",
content: null,
loadComments: function() {
this.set('content', this.store.find('comment'))
},
init: function() { this.loadComments(); this._super() }
顺便说一句,评论将在保存之前添加:我不喜欢的功能。为避免这种情况,我们可能会过滤我们的评论(不确定确切的语法):
persisted: function () {
this.get('content').filterBy('isNew', false)
}.property('content') // or .observes('content.@each') i'm not sure