在 Ember.js 中,我有带模型的路线。你能帮我吗,当我在路由播放列表中时,如何重新加载由另一个 JS 函数回调调用的这条路由(或将新数据设置为模型)?我一直在寻找文档这么久,但对我没有帮助。
App.PlaylistRoute = Ember.Route.extend({
setupController: function(controller, model) {
$.getJSON('api/playlist.php?' + Math.random().toString(36), function (data) {
controller.set('model', data);
});
}
});
非常感谢!