我想在添加后自动更新评论列表
问题是我从带有固定装置的 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')
返回未定义的值,所以我必须做一些事情才能让它工作