gpt4 book ai didi

javascript - 在 ng-repeat 中使用 ng-model

转载 作者:行者123 更新时间:2023-11-28 01:31:34 25 4
gpt4 key购买 nike

我已经使用模板创建了 Angular Directive(指令):

<div class="directiveclass">
<div ng-repeat="i in items">
<input type="radio" ng-model="myvalue" value="{{$index}}">
</div>
</div>

ng-model“myvalue”是指令本地范围的一部分:

.directive('mydirective', function()
{
return {
templateUrl: "path",
scope: {},
link : function(scope, el, attr)
{
scope.myvalue = 0;
scope.$watch('myvalue', function()
{
console.log('myvalue changed');
});
}
};
}

我单击单选按钮元素,但“myvalue”值永远不会改变。

有什么想法吗?

示例代码:http://jsfiddle.net/r5jGL/

最佳答案

我找到了解决方案。由于 ng-repeat 创建新范围,我已将 ng-model 值更改为 $parent.myval 以访问指令范围。

关于javascript - 在 ng-repeat 中使用 ng-model,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22065138/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com