这是我的router.js
this.resource('posts',{ path: '/posts' }, function() {
this.route('show', { path: '/:post_id' })
});
帖子模板有一个帖子列表
show controller有removePost动作。删除帖子后,我使用this.transitionToRoute(" posts")过渡回帖子。问题是,即使模型没有,帖子模板仍会在列表中呈现已删除的帖子。如何在transitiontoroute
之后刷新/重新呈现帖子模板这是我的PostsRoute模型
model: function() {
self=this;
return Ember.$.ajax({
url: "http://localhost:3000/posts",
type: "GET"
})
.then(function(data) {
return data
})
}