首页 > 代码库 > [AngualrJS] ng-strict-di
[AngualrJS] ng-strict-di
In Angular 1.5 introduces "compoment" syntax. But ng-annotate doesn‘t understand ".compoment" syntax, that‘s why in min version, the code doesn‘t work.
so use "ng-strict-di" directive, it tell AngualrJS when compile time to check whether the dependciy injection is working or not.
<body ng-app="app" ng-strict-di ng-cloak> <app> Loading... </app> <script src="bundle.js"></script> </body>
Then we when use compoment, if we don‘t add ‘ngInject‘, then it will block the compiler, so everytime we use component, we need to add:
class CategoriesController { constructor(CategoriesModel) { ‘ngInject‘; CategoriesModel.getCategories() .then(categories => this.categories = categories); }}export default CategoriesController;
[AngualrJS] ng-strict-di
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。