无法将元素属性值传递给父作用域函数

时间:2016-02-22 22:49:13

标签: angularjs

我无法通过ng-click将存储为属性的值从指令模板传递到我的$ parent控制器。在Plunker示例中,我喜欢第二个更改以显示您单击的单词。

在我的指令中,我创建value范围项以保持所需的值。

angular.module('app.directives.dropTarget', [])
  .directive('dropTarget', function() {
    return {
      restrict: 'E',
      scope: {
        day: '=',
        index: '=',
        method: '&',
        value: "="
      },
      templateUrl: "calDay.html"
    };
  });

我可以通过我的转发器行传递值(day.date正确传递)

<drop-target index="$index" day="day" value="value" method="test(day.date, value)"></drop-target>

<div class="calObject droptarget">
    <div class="dayHeader" ng-class="{'currPeriod': day.current, 'notCurrPeriod': !day.current}">
        {{day.date | date:"d"}}
    </div>
    <div class="dayBody">
        <div class="dayExercise" value="{{exercise}}" ng-repeat="item in day.array" ng-click="method(day.date, value)">
            {{item}}
        </div>
    </div>
</div>

Plunker Example

我只是很难通过我认为的指令来理解数据流。

0 个答案:

没有答案