我无法通过我目前正在做的事情来获取奖项,我在获取此系列时遇到了什么错误?
我一直收到以下错误:
错误:处理路由时出错:awards Assertion Failed:ArrayController期望model
实现Ember.Array mixin。这通常可以通过使用`Ember.A()
router.coffee
...
Router.map ->
# Contests
@resource 'contests'
@resource 'contest', { path: '/contests/:contest_id' }
# Awards
@resource 'awards', { path: '/contests/:contest_id/awards' }
@resource 'award', { path: '/contests/:contest_id/awards/:award_id' }
# Ads
@resource 'ads', { path: '/contests/:contest_id/ads' }
@resource 'ad', { path: '/contests/:contest_id/ads/:ad_id' }
...
award.coffee模型
`import DS from 'ember-data'`
AwardModel = DS.Model.extend
# Attributes
description: DS.attr 'string'
amount: DS.attr 'string'
adId: DS.attr 'string'
adType: DS.attr 'string'
state: DS.attr 'string'
thumbnail: "http://placehold.it/290x218"
# Relationships
ad: DS.belongsTo 'ad', async: true
contest: DS.belongsTo 'contest', async: true
`export default AwardModel`
contest.coffee模型
`import DS from 'ember-data'`
ContestModel = DS.Model.extend
# Attributes
title: DS.attr 'string'
truncatedTitle: DS.attr 'string'
state: DS.attr 'string'
totalAwards: DS.attr 'string'
totalAds: DS.attr 'string'
startsOn: DS.attr 'date'
endsOn: DS.attr 'string'
daysLeft: DS.attr 'string'
thumbnail: DS.attr 'string'
createdAt: DS.attr 'date'
# Relationships
ads: DS.hasMany 'ad', async: true
awards: DS.hasMany 'award', async: true
`export default ContestModel`
awards.coffee控制器
`import Ember from 'ember'`
AwardsController = Ember.ArrayController.extend
videoAwards: '',
printAwards: '',
setAwards: (type) ->
awards = @filter((award) ->
award.get('adType') == type.capitalize()
)
@set(type + 'Awards', awards)
actions:
sortAwardsByType: ->
@setAwards('video')
@setAwards('print')
# TODO: find out why this is not working
# ['video', 'print'].forEach (type) ->
# @setAwards(type)
`export default AwardsController`
awards.coffee路线文件
`import Ember from 'ember'`
`import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'`
AwardsRoute = Ember.Route.extend AuthenticatedRouteMixin,
model: ->
# How to fetch the awards of the given contest here with ember data
setupController: (controller, model) ->
controller.set('model', model)
controller.send('sortAwardsbyType')
`export default AwardsRoute`
答案 0 :(得分:2)
这样可行:
// awards route
model: (params) ->
@store.find('contest', params.contest_id).then((contest) ->
contest.get('awards')
)
有关promises chain here的更多信息。
然后,您可以在奖励控制器中对模型实施过滤。