gpt4 book ai didi

javascript - AngularJS 从其他 Controller 更新 $scope

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

我有以下问题:

在我的 Controller 中,我有类似的内容:

$scope.current = 0;

我有一些看起来像这样的指令:

angular.module('myAPP')
.directive('post', function() {
return {
restrict: 'EA',
replace: true,
scope: {
post: '=',
index: '='
},

link: function(scope) {
//update the $scope.current here
},
templateUrl: 'components/blog/post.html'
};
});

有人可以解释一下最好的方法是什么吗?可以更新链接函数内的 $scope 吗?

谢谢!

最佳答案

您的指令有一个隔离范围

要更改指令的当前,您必须将其与指令范围变量绑定(bind),如下所示

像这样

html

<post index="current"></post>

js

link: function(scope) {
scope.index=2;
},

关于javascript - AngularJS 从其他 Controller 更新 $scope,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32522614/

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