断言失败:使用 `{{view}}` 已在 Ember 2.0 中删除
Assertion Failed: Using `{{view}}` has been removed in Ember 2.0
我在我的项目中升级了 ember 版本并遇到了一些异常:
Assertion Failed: Using {{view}}
or any path based on it
('path/c-text.hbs' @ L1:C0) has been removed in
Ember 2.0
我该如何改变
{{view}}
命令?
视图是 deprecated in Ember 2.0, you can use the ember-legacy-views 插件以将它们添加回去。
This addon enables legacy view support without deprecation notices in Ember.js 1.13. In Ember.js 2.0 views are not present at all, and this addon brings them back. After Ember 2.4 is released this addon will no longer be compatible with Ember. It should be used to provide extra time for migrating away from views, not as a permanent solution.
我在我的项目中升级了 ember 版本并遇到了一些异常:
Assertion Failed: Using
{{view}}
or any path based on it ('path/c-text.hbs' @ L1:C0) has been removed in Ember 2.0
我该如何改变
{{view}}
命令?
视图是 deprecated in Ember 2.0, you can use the ember-legacy-views 插件以将它们添加回去。
This addon enables legacy view support without deprecation notices in Ember.js 1.13. In Ember.js 2.0 views are not present at all, and this addon brings them back. After Ember 2.4 is released this addon will no longer be compatible with Ember. It should be used to provide extra time for migrating away from views, not as a permanent solution.