私は ember-cli@0.2.3 に更新しましたが、ember serve
私のアドオン プロジェクトを実行してダミー アプリを起動すると、次のエラー メッセージが表示されます。
Uncaught Error: Assertion Failed: The value that #each loops over must be an Array. You passed [search,create,read,update,delete]
コントローラーには次のものがあります。
operations : ['search', 'create', 'read', 'update', 'delete'],
template.hbs には次のものがあります。
{{view "select" content=operations value=selectedOperation class="form-control"}}
.property()
私が気付いたもう1つのことは、値を代わりに「Ember.computed」に変更する必要があるため、EXTEND_PROTOTYPESがデフォルトまたは何かでオフになっているように見えることです。