javascript – 将ng-model值传递给angular指令

我有一个场景,我有一定数量的文本框,当我点击任何文本框时,其相应的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)是否有更好的方法来完成上述要求?

最佳答案 问题是你的指令,它使用单一范围.

为了解决您的问题,您需要通过提及范围使您的指令使用隔离范围:true inside directive&为了更加灵活,我建议您使用require:’ngModel’根据需要创建ngModel属性,因为您的指令完全依赖于它.
通过创建字段,您可以在指令前/后链接功能中获取ngModel.并且您可以随时使用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;
      };
    }
  }
});

Working Plunkr

点赞