我正在尝试构建简单的ember应用程序。我使用缓存FIXTURES在模板中呈现数据。但是,我不知道这个模板中的错误。
模板代码:
{{#each}}
<option>{{mname}}</option>
{{/each}}
Js代码:
timeZoneApp.CalendarboxRoute = Ember.Route.extend({
model: function() {
return this.store.findAll('calendarbox');
}
});
答案 0 :(得分:0)
您忘记了实际定义路线:
timeZoneApp.Router.map(function() {
this.resource('calendarbox', {path: '/'});
});