gpt4 book ai didi

javascript - Angular Controller $scope.fId 显示未定义的值

转载 作者:行者123 更新时间:2023-11-30 12:13:49 24 4
gpt4 key购买 nike

我想在 Angular Controller FollowBtnCtrl 中使用输入 fId 值,我制作了一个调用 followMe() 函数的按钮,定义在里面FollowBtnCtrl Controller ,当我在 Controller 中获取 $scope.fId 值时,它显示未定义的值。请检查我的代码并告诉我哪里错了,很抱歉这个愚蠢的问题,但我是 angularjs 的新手。提前致谢

Angular Controller :

.controller("FollowBtnCtrl", function ($scope) {
$scope.followMe = function () {
alert($scope.fId);
}
});

HTML代码:

<div ng-controller="FollowBtnCtrl">
<ons-toolbar-button>
<input ng-model="fId" id="fId" type="hidden" value="10" />
<button ng-click="followMe()" class="followButton button button">
Hello
</button>
</ons-toolbar-button>
</div>

最佳答案

ons-toolbar-button 指令创建了另一个作用域。您可以访问父级 followMe(),但父级无法访问该作用域的已定义变量 (fId)。许多解决方案...这里是一个:

ng-click="followMe(fId)"$scope.followMe = function(fId){...}

关于javascript - Angular Controller $scope.fId 显示未定义的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32989187/

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