从Ember中的灯具渲染数据

时间:2015-03-14 07:14:41

标签: javascript ember.js ember-data

我正在尝试构建简单的ember应用程序。我使用缓存FIXTURES在模板中呈现数据。但是,我不知道这个模板中的错误。

Here is the example jsbin

模板代码:

{{#each}}
      <option>{{mname}}</option>
{{/each}}

Js代码:

 timeZoneApp.CalendarboxRoute = Ember.Route.extend({
   model: function() {
       return this.store.findAll('calendarbox');
   }
});

1 个答案:

答案 0 :(得分:0)

您忘记了实际定义路线:

timeZoneApp.Router.map(function() {
  this.resource('calendarbox', {path: '/'});
});

http://jsbin.com/tewelusewe/1/edit?html,js,output