Emberjs模型查找方法没有填充模板

时间:2013-03-05 07:25:38

标签: javascript ember.js

我的路线设置为

# ROUTER MAPPING
App.Router.map( ->
  this.resource("alertInstances", 
    path:"/"
  )

  this.resource("alertInstance", 
    path:"/:alertInstance_id"
  )
)

# ALERT INSTANCES ROUTE
App.AlertInstancesRoute = Ember.Route.extend(
  model: ->
    App.AlertInstance.all()

  setupController: (controller, model) ->
    controller.set("content", model)
)

# ALERT INSTANCE ROUTE
App.AlertInstanceRoute = Ember.Route.extend(
  model: (params) ->
    App.AlertInstance.find(params.alertInstance_id)

  setupController: (controller, model) ->
    controller.set("content", model)
)

当我去路线“/”时,我得到一个所有“警报实例”的列表,然后我点击一个,它会显示一个“警报实例”的详细信息。

我的模型对象设置如下。

# ALERT INSTANCE MODEL
App.AlertInstance = Ember.Object.extend()
App.AlertInstance.reopenClass(
  allAlertInstances: []
  currAlertInstance:null
  all: ->
    @allAlertInstances = []
    $.ajax
      url:base + "api/alert_instances"
      dataType: "JSON"
      context:this 
      success: (response) ->
    for i in response
      i.clinical = if i.alert_type is "clinical" then true else false
      @allAlertInstances.addObject App.AlertInstance.create(i)
    @allAlertInstances
)

这一切都很有效。但是当用户直接转到“/ 10”(通过指定警报实例ID)时,由于没有从服务器检索到数据,因此无需显示任何内容。

所以我添加了以下“查找”方法

find: (id) ->
  @currAlertInstance = null
  $.ajax 
    url:base + "api/alert_instance"
    dataType:"JSON"
    context:this
    data:
      id:id
      success: (response) ->
        @currAlertInstance = App.AlertInstance.create(response)
        @currAlertInstance
  @currAlertInstance

但视图为空,没有显示任何内容。

我可以在Chrome控制台网络中看到确实已经返回了一个警报实例JSON对象。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

在路线中使用渲染来渲染模板。

App.AlertInstancesRoute = Ember.Route.extend({
  render: function() {
    this.render([<handlebar_name>], {
       [outlet: <outlet_name>],
       [into: <template_name_to_render_to>]
    });
  },

  model: function(params) {
    App.AlertInstance.all();
  },

  setupController: function(controller, model) {
    controller.set("content", model);
  }
})

有关详情,请点击this link