我有一个场景,我有一定数量的文本框,当我点击任何一个文本框时,它的相应ng模型将打印在浏览器控制台上。我写了以下角度代码:
<html ng-app="myApp">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.0/angular.min.js"></script>
<script>
var app = angular.module("myApp", [])
app.controller("myAppCtrl", function($scope){
$scope.modelName = '';
});
app.directive("myDirective", function(){
return{
restrict: "A",
link: function(scope, elem, attrs){
scope.customFunc1 = function(){
console.log(attrs.ngModel);
scope.modelName = attrs.ngModel;
};
}
}
});
</script>
</head>
<body>
<div>
<input name="tb_1" type="text" ng-model="tb_1" ng-mousedown="customFunc1()" my-directive>
</div>
<div>
<input name="tb_2" type="text" ng-model="tb_2" ng-mousedown="customFunc1()" my-directive>
</div>
<div>
<input name="tb_3" type="text" ng-model="tb_3" ng-mousedown="customFunc1()" my-directive>
</div>
</body>
</html>
我有两个问题: 1)每当我点击文本框时,都会打印第三个文本框的ng模型,而不管我实际点击了哪个文本框。我该如何解决这个问题?
2)是否有更好的方法来完成上述要求?
答案 0 :(得分:2)
问题是你的指令,它使用单一范围。
要解决您的问题,您需要通过提及内部指令&amp;中的scope: true
来使您的指令使用隔离范围。为了更加灵活,我建议您使用ngModel
根据需要制作require: 'ngModel'
属性,因为您的指令完全依赖于它。
通过创建字段,您可以在指令ngModel
/ pre
链接功能中获得post
。并且您可以随时使用ng-model
变量值或验证
<强>指令强>
app.directive("myDirective", function() {
return {
restrict: "A",
require: 'ngModel',
scope: true,
link: function(scope, elem, attrs, ngModel) {
scope.customFunc1 = function() {
console.log(attrs.ngModel);
scope.modelName = attrs.ngModel;
};
}
}
});