私は、ember を使用して単純なカテゴリ ブラウザーを構築しようとしています。私は2つの非常に単純なビューを持っています。ユーザーがアクセス/すると、すべてのカテゴリのリストが表示され、そのリスト内のカテゴリをクリックする#/10と、ID が 10 の場所に移動します。
/私の問題は、ユーザーがルートのカテゴリをクリックすると、次のエラーが発生することです
TypeError: arrangedContent.addArrayObserver is not a function
[Break On This Error]   
didChange: 'arrangedContentArrayDidChange'
ルートでページを更新する#/10と、バックエンドに対して適切な API 呼び出しが行われます/api/categories?parent=99。移行中にこのエラーをスローしている何が間違っている可能性がありますか? 私のコードの完全な例を以下に示します。
テンプレート:
<script type="text/x-handlebars">
  {{outlet}}
</script>
<script type="text/x-handlebars" data-template-name="categories">
    {{#each category in controller}}
        <p>{{#linkTo 'category' category}}{{ category.name }}{{/linkTo}}</p>
    {{/each}}
</script>
<!--this is an array instead of object -->
<script type="text/x-handlebars" data-template-name="category">
    {{#each category in controller}}
        <p>{{category.name}}</p>
    {{/each}}
</script>
Javascript:
var App = Ember.Application.create();
App.Router.map(function(){
    this.resource('categories', { path : '/' });
    this.resource('category', { path : '/:category_id' });
});
App.CategoriesRoute = Ember.Route.extend({
    model: function(){
        return App.Category.find();
    }
});
//this is causing the error possibly
    App.CategoryRoute = Ember.Route.extend({
        model: function(params){
            return App.Category.find({parent: params.category_id});
        }
    });
App.CategoryController = Ember.ArrayController.extend();
// Models
App.Store = DS.Store.extend({
  revision: 11,
  adapter: 'DS.RESTAdapter'
});
DS.RESTAdapter.configure("plurals", {
  category: "categories"
});
App.Category = DS.Model.extend({
  name: DS.attr('string'),
  parent_id: DS.attr('number')
});
デバッグ情報:
DEBUG: Ember.VERSION : 1.0.0-rc.1
DEBUG: Handlebars.VERSION : 1.0.0-rc.3
DEBUG: jQuery.VERSION : 1.9.0