Ember Link To Next Object In Model
问题 http://emberjs.jsbin.com/aGUguJA/10 Using the bloggr example I built a list of posts and a post view and I've added 2 actions to the post template, Previous and Next. App.PostController = Ember.ObjectController.extend({ actions:{ next: function(){ //Go to next object in a model }, prev: function(){ //Go to previous object in a model }} }); I can't figure out how to make the Previous and Next to work. I have a strong feeling I need to be using an ArrayController but I still wouldn't know where