我创建了一个小例子来尝试让多个模型在没有 Ember Data 的情况下工作。
App = Ember.Application.create();
App.Router.map(function () {
this.resource('employees', function () {
this.route('employee');
});
});
App.Employee = Ember.Object.extend({});
App.Employee.reopenClass({
findAll: function () {
return $.getJSON("http://localhost/api/employee").then(
function (response) {
var employees = [];
response.forEach(function (child) {
employees.push(App.Employee.create(child));
});
console.log(employees.join('\n'));
return employees;
}
);
}
});
App.EmployeesController = Ember.ArrayController.extend({});
App.EmployeesRoute = Ember.Route.extend({
model: function () {
return App.Employee.findAll();
}
});
车把:
<script type="text/x-handlebars">
<p>Application template</p>
{{#linkTo employees}}<button>Show employees</button>{{/linkTo}}
{{outlet}}
</script>
<script type="text/x-handlebars" data-template-name="employees">
<p>Employees template</p>
{{#each controller}}
<p>{{Name}}</p>
{{/each}}
{{outlet}}
</script>
当我直接导航到localhost/#/employee
url 时,它工作得很好,但是当我单击“显示员工”按钮时,我收到以下错误:
Uncaught TypeError: Object #<Object> has no method 'addArrayObserver'
我可能在某处遗漏了一些东西,但我不确定错误指的是哪个对象。当我按下按钮时,我的模型钩子被正确调用,就像我通过手动输入 url 进行导航一样,所以我不明白在提到的两种情况下到底有什么不同。