码迷,mamicode.com
首页 > Web开发 > 详细

[AngualrJS] ng-strict-di

时间:2016-09-04 18:58:58      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/Answer1215/p/5839826.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!