我试图创建一个指令,将创建一个输入字段与元素相同的ng-model创建指令。

这是我目前想到的:

HTML

<!doctype html>
<html ng-app="plunker" >
<head>
  <meta charset="utf-8">
  <title>AngularJS Plunker</title>
  <link rel="stylesheet" href="style.css">
  <script>document.write("<base href=\"" + document.location + "\" />");</script>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.js"></script>
  <script src="app.js"></script>
</head>
<body ng-controller="MainCtrl">
  This scope value <input ng-model="name">
  <my-directive ng-model="name"></my-directive>
</body>
</html>

JavaScript

var app = angular.module('plunker', []);

app.controller('MainCtrl', function($scope) {
  $scope.name = "Felipe";
});

app.directive('myDirective', function($compile) {
  return {
    restrict: 'E',
    scope: {
      ngModel: '='
    },
    template: '<div class="some"><label for="{{id}}">{{label}}</label>' +
      '<input id="{{id}}" ng-model="value"></div>',
    replace: true,
    require: 'ngModel',
    link: function($scope, elem, attr, ctrl) {
      $scope.label = attr.ngModel;
      $scope.id = attr.ngModel;
      console.debug(attr.ngModel);
      console.debug($scope.$parent.$eval(attr.ngModel));
      var textField = $('input', elem).
        attr('ng-model', attr.ngModel).
        val($scope.$parent.$eval(attr.ngModel));

      $compile(textField)($scope.$parent);
    }
  };
});

然而,我不相信这是处理此场景的正确方法,并且有一个错误,即我的控件没有使用ng-model目标字段的值进行初始化。

下面是上面代码的一个Plunker: http://plnkr.co/edit/IvrDbJ

正确的处理方法是什么?

编辑:从模板中删除ng-model="value"后,这似乎工作得很好。但是,我将保留这个问题,因为我想再次确认这是正确的方法。


当前回答

从Angular 1.5开始,就可以使用组件了。组件是很容易解决这个问题的方法。

<myComponent data-ng-model="$ctrl.result"></myComponent>

app.component("myComponent", {
    templateUrl: "yourTemplate.html",
    controller: YourController,
    bindings: {
        ngModel: "="
    }
});

在你的控制器中,你需要做的是:

this.ngModel = "x"; //$scope.$apply("$ctrl.ngModel"); if needed

其他回答

我不会通过属性来设置ngmodel,你可以在模板中直接指定:

template: '<div class="some"><label>{{label}}</label><input data-ng-model="ngModel"></div>',

砰砰作响:http://plnkr.co/edit/9vtmnw?p=preview

当你需要访问模型的$viewValue或$modelValue时,你只需要ng-model。看到NgModelController。在这种情况下,你会使用require: '^ngModel'。

至于其他,请参见罗伊的回答。

这是一个有点晚的回答,但我发现了一篇关于NgModelController的很棒的文章,我认为这正是你正在寻找的。

你可以使用require: 'ngModel',然后将NgModelController添加到你的链接函数中:

link: function(scope, iElement, iAttrs, ngModelCtrl) {
  //TODO
}

这样,你就不需要任何技巧了——你使用的是Angular内置的ng-模型

创建隔离作用域是不可取的。我将避免使用scope属性,并执行类似这样的操作。作用域:true给你一个新的子作用域,但不是孤立的。然后使用parse将局部作用域变量指向用户提供给ngModel属性的同一个对象。

app.directive('myDir', ['$parse', function ($parse) {
    return {
        restrict: 'EA',
        scope: true,
        link: function (scope, elem, attrs) {
            if(!attrs.ngModel) {return;}
            var model = $parse(attrs.ngModel);
            scope.model = model(scope);
        }
    };
}]);

其实没那么复杂: 在你的指令中,使用别名:scope:{alias:'=ngModel'}

.directive('dateselect', function () {
return {
    restrict: 'E',
    transclude: true,
    scope:{
        bindModel:'=ngModel'
    },
    template:'<input ng-model="bindModel"/>'
}

在你的html中,正常使用

<dateselect ng-model="birthday"></dateselect>