Scoping issue when setting ngModel from a directive

后端 未结 2 1202
闹比i
闹比i 2021-01-26 01:13

I have a directive which looks something like:

var myApp = angular.module(\'myApp\',[])
    .directive(\"test\", function() {
      return {
        template: \'         


        
相关标签:
2条回答
  • 2021-01-26 01:58

    All you need to do is add scope: true to your directive hash. That makes a new inheriting child scope for each instance of your directive, instead of continually overwriting "setValue" on whatever scope is already in play.

    And you're right about isolate scope. My advice to newbies is just don't use it ever.

    Response to comment:

    I understand the question better now. When you set a value via an expression, it sets it in the most immediate scope. So what people typically do with Angular is they read and mutate values instead of overwriting values. This entails containing things in some structure like an Object or Array.

    See updated fiddle:

    http://jsfiddle.net/kMybm/20/

    ("foo" would normally go in a controller hooked up via ngController.)

    Another option, if you really want to do it "scopeless", is to not use ng-click and just handle click yourself.

    http://jsfiddle.net/WnU6z/8/

    0 讨论(0)
  • 2021-01-26 02:01

    For this scenario ngModel probably isn't the right solution. That's mostly for binding values to forms to doing things like marking them dirty and validation...

    Here you could just use a two way binding from an isolated scope, like so:

    app.directive('test', function() {
       return {
          restrict: 'E',
          scope: { 
             target: '=target',
             setTo: '@setTo'
          },
          template: '<button ng-click="setValue()">Set value</button>',
          controller: function($scope) {
              $scope.setValue = function() {
                  $scope.target = $scope.setTo;
              };
              //HACK: to get rid of strange behavior mentioned in comments
              $scope.$watch('target',function(){});
          }
       };
    });
    
    0 讨论(0)
提交回复
热议问题