如题,自己写了两个指令,想作用在同意元素下,先进行repeat,后进行bind,但目前,仅第一个执行bind
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>angular</title>
<script src="http://cdn.bootcss.com/angular.js/1.2.10/angular.min.js"></script>
</head>
<body ng-app="app">
<p ng-controller="test">
<input type="text" ng-model="msg">
<p lxc-bind="msg" lxc-reapeat="3">123123</p>
<!-- <p lxc-reapeat="3">lxc</p> -->
</p>
<script>
angular.module('app',[])
.controller('test',function($scope){
$scope.msg = 'test';
})
.directive('lxcBind',function(){
// Runs during compile
return {
restrict: 'A', // E = Element, A = Attribute, C = Class, M = Comment
link: function($scope, iElm, iAttrs, controller) {
$scope.$watch(iAttrs.lxcBind,function(newValue){
iElm.text(newValue);
})
}
};
})
.directive('lxcReapeat',function(){
return {
restrict:'A',
priority: 1000,
link:function($scope,$elm,$attr){
var repeatNum = $attr.lxcReapeat;
for (var i=repeatNum-2;i>= 0;i--){
var dom = $elm.clone();
$elm.after(dom);
}
}
}
})
</script>
</body>
</html>
最初のポイントは、
clone
メソッドはノードのみを複製し、バインドされたイベントは複製されません。2 番目の点は、ドキュメントにノードを動的に追加する場合、angular ディレクティブは有効にならず、動的コンパイルが必要になります。
clone
方法只是克隆节点,绑定的事件是不会被克隆的。第二点,动态添加节点到文档,angular 指令是不会生效的,需要动态编译。
效果图:
与
ng-repeat
上面这种实现,功能上没有问题,但是阵型并不是很统一。于是,稍作修改
最终对比
レンダリング:请采纳
リーリー#🎜🎜# #🎜🎜# #🎜🎜# #🎜🎜#
ng-repeat
#🎜🎜# #🎜🎜#上記の実装は機能的には問題ありませんが、編成があまり統一されていません。ということで、少し修正してみました#🎜🎜# リーリー #🎜🎜#最終比較
#🎜🎜# #🎜🎜#
採用してください
。 #🎜🎜#