AngularJSのいくつかの補充
1361 ワード
{{}}
app.directive('xmg',function(){
return {
restrict:'EA',
//
//template:'
123
',
template:'
'
replace:true,
//
transclude:true,
controller:function($scope){
// ,
},
link:function($scope){
// , , DOM
}
}
})
カスタムコマンドの場合
命令名に大文字と小文字がある場合は、要素/属性をテンプレートで置き換えるときに全小文字で、大文字の前に'-'で区切る必要があります.
app.directive('xmgContent',function(){
restrict:'EA',
template:' ',
replace:true
})
コントローラにはサービスが注入され、
angular.module('app',[]);
にはモジュールが注入されています.