我有一个由CouchDB支持的Ember应用程序。目前,我的默认路线是:
App.ReadingsRoute = Ember.Route.extend( {
model: function() {
return this.store.find( 'reading' )
}
} )
从all
视图中提取条目。我想将其切换为by_time
,但我不确定如何指定它。
答案 0 :(得分:1)
我想通过代码挖掘出来:
return this.store.findQuery( 'reading', {
designDoc: 'reading',
viewName: 'by_time',
options: {
descending: true
}
} )