@绑定

	
angular.module('myApp', []) .directive('myDirective', function() { return { restrict: 'A', replace: true, scope: { myUrl: '@', //绑定策略 myLinkText: '@' //绑定策略 }, template: '' + '{{myLinkText}}' }; });

 

你可能感兴趣的:(AngularJs)