AngularJS 指令中的属性的绑定方式

指令域scope的@
  
   
      
  
    
        
    
 
//这个必须指定的,这里的title是指令里scope的@对应的,t就是控制域scope下的 我的angularjs

main05.js

var myApp=angular.module('myApp',[]);  
myApp.controller('listCtrl',function($scope){  
   $scope.logchore="motorola";  
});  
  
  
myApp.directive('kid',function(){  
    return {  
        'restrict':'E',  
        scope:{  
            title:"@"  
        },  
        template:'
{{title}}
' } }); 在输入框输入数字会绑定到指令模板的title中。




你可能感兴趣的:(AngularJS 指令中的属性的绑定方式)