我想知道如何在我的模型/存储上调用 lastObject、nextObject?我总是得到一个“没有方法”的错误。
两种方法都在这里定义:http: //emberjs.com/api/classes/Ember.Array.html
App.Photo = DS.Model.extend
url: DS.attr('string'),
displayName: DS.attr('string')
App.Store = DS.Store.extend
revision: 12,
adapter: 'DS.FixtureAdapter'
App.PhotoController = Ember.ObjectController.extend
init: ->
console.info "last", App.Photo.lastObject
console.info "next", App.Photo.nextObject(@get('content'))
更新/工作解决方案
console.info "last", App.Photo.find().get('lastObject')