AnglarJSカスタムコマンドとコマンドの設定項目を実現する方法


本明細書の例は、AnglarJSがカスタム命令および命令配置項目を実現する方法を説明する。皆さんに参考にしてあげます。具体的には以下の通りです。
AnglarJSカスタムコマンドには2つの書き方があります。

//   
angular.module('MyApp',[])
.directive('zl1',zl1)
.controller('con1',['$scope',func1]);
function zl1(){
  var directive={
    restrict:'AEC',
   template:'this is the it-first directive',
  };
  return directive;
};
function func1($scope){
  $scope.name="alice";
}
//   
angular.module('myApp',[]).directive('zl1',[ function(){
 return {
  restrict:'AE',
  template:'thirective',
  link:function($scope,elm,attr,controller){
   console.log("  link");
  },
  controller:function($scope,$element,$attrs){
   console.log("  con");
  }
 };
}]).controller('Con1',['$scope',function($scope){
 $scope.name="aliceqqq";
}]);

命令配置項目

angular.module('myApp', []).directive('first', [ function(){
  return {
    // scope: false, //    ,       
    // controller: function($scope, $element, $attrs, $transclude) {},
    restrict: 'AE', // E = Element, A = Attribute, C = Class, M = Comment
    template: 'first name:{{name}}',
  };
}]).directive('second', [ function(){
  return {
    scope: true, //                   
    // controller: function($scope, $element, $attrs, $transclude) {},
    restrict: 'AE', // E = Element, A = Attribute, C = Class, M = Comment
    //      name ,second             name  ,        
    // name    ,         name second  name       
    template: 'second name:{{name}}',
  };
}]).directive('third', [ function(){
  return {
    scope: {}, //             ,       
    // controller: function($scope, $element, $attrs, $transclude) {},
    restrict: 'AE', // E = Element, A = Attribute, C = Class, M = Comment
    template: 'third name:{{name}}',
  };
}])
.controller('DirectiveController', ['$scope', function($scope){
  $scope.name="mike";
}]);

AnglarJSに関する詳細について興味がある読者は、このサイトのテーマを見ることができます。「AnglarJS指令操作テクニックのまとめ」、「AnglarJS入門と上級教程」および「アングラルJS MVCアーキテクチャのまとめ
この記事で皆さんのAnglarJSプログラムの設計に役に立ちますように。