AngularJS standard directive priority list

后端 未结 1 1251
一整个雨季
一整个雨季 2020-12-16 01:27

I\'m looking for a list of standard angularjs directives with their priorities (especially the nonzero ones). It would be helpful to look at it whenever you want to create a

相关标签:
1条回答
  • 2020-12-16 01:37

    List of standard angular directives sorted by their priorities. Hope this will be useful.

    Directive           Priority    
    ---------------     -----------
    ng-switch           1200    
    ng-non-bindable     1000    
    ng-repeat           1000    
    ng-if               600 
    ng-controller       500 
    ng-init             450 
    ng-include          400 
    ng-checked          100 
    ng-disabled         100 
    ng-open             100 
    ng-readonly         100 
    ng-selected         100 
    ng-href             99  
    ng-src              99  
    ng-srcset           99  
    ng-model            1   
    ng-app              0   
    ng-bind             0   
    ng-bind-html        0   
    ng-bind-template    0
    ng-blur             0
    ng-change           0
    ng-class            0
    ng-class-even       0
    ng-class-odd        0
    ng-click            0
    ng-cloak            0
    ng-copy             0
    ng-csp              0
    ng-cut              0
    ng-dbl-click        0
    ng-focus            0
    ng-form             0
    ng-hide             0
    ng-keydown          0
    ng-keypress         0
    ng-keyup            0
    ng-list             0
    ng-model-options    0
    ng-mousedown        0
    ng-mouseenter       0
    ng-mouseleave       0
    ng-mousemove        0
    ng-mouseover        0
    ng-mouseup          0
    ng-options          0
    ng-paste            0
    ng-pluralize        0
    ng-show             0
    ng-style            0
    ng-submit           0
    ng-transclude       0
    ng-value            0
    

    References

    • AngularJS 1.5.0 Source
    0 讨论(0)
提交回复
热议问题