gpt4 book ai didi

javascript - Angular 自定义指令更改属性值

转载 作者:数据小太阳 更新时间:2023-10-29 04:49:34 30 4
gpt4 key购买 nike

努力寻找监视属性更改的最佳方法,理想情况下,它会根据按键事件进行更新,并绑定(bind)到父 Controller 中的范围

我希望指令的每个“实例”都有自己的“hasFocus”属性,可以通过更新属性值来更改例如

<menu has-focus="{{ true }}" ></menu>
<menu has-focus="{{ false }}" ></menu>
<menu has-focus="{{ false }}" ></menu>

模板:

<div class="menu">
<ul>
<li ng-repeat="option in menu.options" ng-class="{ 'focused' : hasFocus }" tabindex="{{ $index }}">
<div class="icon">{{ $index+1 }}</div>
</li>
</ul>

因此在任何时候只有 1 个指令的值等于“true”。

我有一个自定义指令

.directive('menu', function()
{
restrict : 'E',
templateUrl : 'partials/menu-left.html',
replace : true,
scope : {
hasFocus : '@'
},
link : function( $scope, element, attrs )
{
attrs.$observe('hasFocus', function(value) {
console.log(value);
});
}

})

但似乎无法从 $observe 方法中提取值尝试使用 $watch 但仍然没有用不确定我做错了什么!

最佳答案

如果您使用 @ 绑定(bind),您可能必须像这样使用 $watch:

$scope.$watch(function(){
return attrs.hasFocus;
}, function(val) {
$scope.hasFocus = val;
});

如果这不起作用,或者如果您更喜欢使用 = 进行双向绑定(bind):

<menu has-focus="true" ></menu>

.directive('menu', function()
{
restrict : 'E',
templateUrl : 'partials/menu-left.html',
replace : true,
scope : {
hasFocus : '='
},
link : function( $scope, element, attrs )
{
// $scope.hasFocus holds true/false
}

})

我认为双向绑定(bind)更好,尤其是 bool 值,因为如果你只需要它来控制 DOM 的外观,你可能甚至不需要观察变化,你只需要插入 $scope.hasFocus进入 DOM 某处(ng-show、ng-switch 等)

编辑:是的,我刚刚注意到您的模板,所以如果您使用双向绑定(bind) (=),则不需要 watch

关于javascript - Angular 自定义指令更改属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27843047/

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