时间:2021-05-28
引入主题背景:angular 的指令配置中的template可以直接使用硬编码写相应的代码,不过也可以根据变量,进行动态更新。那么需要用到那些变量,因用法的不同,所以需要设置合适的绑定策略。
1:先说指令域scope的@
我觉得描述很费劲,直接用代码来阐述:
AngularJS.html
<!doctype html> <html ng-app='myApp'> <head> </head> <body> <div ng-controller="listCtrl"> <input type="text" ng-model="t" /> <kid title="{{t}}" > //这个必须指定的,这里的title是指令里scope的@对应的,t就是控制域scope下的 <span>我的angularjs</span> </kid> </div> <script type="text/javascript" src="angular.js"></script> <script type="text/javascript" src="main05.js"></script> </body></html>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:'<div >{{title}}</div>' } });在输入框输入数字会绑定到指令模板的title中。
2:再说说Scope的=
angularjs.html
<!doctype html> <html ng-app='myApp'> <head> </head> <body> <div ng-controller="listCtrl"> <input type="text" ng-model="t" /> <kid title="t" > //和上面相比,这个直接赋值等于scope域下的t了 <p>{{title}}</p> <span>我的angularjs</span> </kid> </div> <script type="text/javascript" src="angular.js"></script> <script type="text/javascript" src="main05.js"></script> </body></html>main05.js代码如下:
3:最后说&,这个是用来方法调用的
angularjs.html代码如下:
<!doctype html> <html ng-app='myApp'> <head> </head> <body> <div ng-controller="listCtrl"> <kid flavor="logchore()" ></kid> //先比=,函数赋值的形式,而logchore函数必须是域scope下声明的函数 </div> <script type="text/javascript" src="angular.js"></script> <script type="text/javascript" src="main05.js"></script> </body></html>main05.js代码如下:
var myApp=angular.module('myApp',[]); myApp.controller('listCtrl',function($scope){ $scope.logchore=function(){ alert('ok'); }; }); myApp.directive('kid',function(){ return { 'restrict':'E', scope:{ flavor:"&" }, template:'<div ><button ng-click="flavor()"></button></div>' } });如果logchore带有参数,
angularjs.html代码如下:
<!doctype html> <html ng-app='myApp'> <head> </head> <body> <div ng-controller="listCtrl"> <kid flavor="logchore(t)" ></kid> </div> <script type="text/javascript" src="angular.js"></script> <script type="text/javascript" src="main05.js"></script> </body></html>main05.js代码如下:
var myApp=angular.module('myApp',[]); myApp.controller('listCtrl',function($scope){ $scope.logchore=function(x){ alert(x); }; }); myApp.directive('kid',function(){ return { 'restrict':'E', scope:{ flavor:"&" }, template:'<div > <input type="text" ng-model="v" /> <button ng-click="flavor({t:v})"></button></div>' } });以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
今天,我来谈谈angularJs指令的3种绑定策略。公司最近大量使用angularJs做单页面应用,就免不了使用angularJs的一些组件,而有的组件网上有现
AngularJS参考手册AngularJS指令本教程用到的AngularJS指令:指令描述ng-app定义应用程序的根元素。ng-bind绑定HTML元素到应
本文实例讲述了AngularJS中directive指令使用之事件绑定与指令交互用法。分享给大家供大家参考,具体如下:AngularJS中模板的使用,事件绑定以
本文实例讲述了AngularJS指令中的绑定策略。分享给大家供大家参考,具体如下:在前面的文章中,我们知道了指令如何生成独立的scope,这一节中我们来仔细研究
html:Angularjs指令:/***div模拟textarea输入框双向数据绑定指令*/.directive('contenteditable',[fun