我无法通过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>
我只是很难通过我认为的指令来理解数据流。