gpt4 book ai didi

javascript - 从 View 检索变量值到 Controller

转载 作者:行者123 更新时间:2023-11-30 20:35:01 27 4
gpt4 key购买 nike

我正在尝试从我的 View 中检索一个值到 Controller 。该值是在运行时生成的。

<ng-option ng-repeat="w in details track by $index">
<div class="program-grid-row table-row" >
<div>
<a class= ng-click="setWork('hello')"
href="#/helloworls/{{w[5]}}">{{w[5]}}</a>
</div>
</div>
</ng-option>

我想在我的 Controller 上检索 w[5] 的值,这样 Controller .js

$http.get(Url +$scope.w[5]).then(function(response){
$rootScope.details= response.data;
});

不确定我们如何在 Controller 上检索 w[5] 的值。请帮忙。

最佳答案

您可以尝试获取 $scope.details 的最后一个值的 w[5] 但我认为您的问题本身是不正确的:

<ng-option ng-repeat="w in details track by $index">
<div class="program-grid-row table-row" >
<div>
<a class= ng-click="setWork('hello')"
href="#/helloworls/{{w[5]}}">{{myData = w[5]}}</a>
</div>
</div>
</ng-option>

在 Controller 中

$http.get(Url +$scope.myData).then(function(response){
$rootScope.details= response.data;
});

<ng-option ng-repeat="w in details track by $index">
<div class="program-grid-row table-row" >
<div>
<a class= ng-click="setWork(w[5])"
href="#/helloworls/{{w[5]}}">{{w[5]}}</a>
</div>
</div>
</ng-option>

在 Controller 中

$scope.setWork = function(data){
$http.get(Url +data).then(function(response){
$rootScope.details= response.data;
});
}

关于javascript - 从 View 检索变量值到 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49937517/

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