gpt4 book ai didi

javascript - 如何向重定向页面传递参数?

转载 作者:行者123 更新时间:2023-11-28 07:14:56 43 4
gpt4 key购买 nike

我有可用于单击按钮的脚本:

 $scope.ShowDetailsAboutTicket = function (pinTicket) {
if ($scope.showdetail == false && pinTicket != null) {
$scope.pinTicket = pinTicket;


$http.get(TicketUrl + 'GetTicket/' + $scope.terminalId + '/' + $scope.pinTicket)
.success(function(data, status, headers, config)
{

$("#background").addClass("darker");
$scope.showdetail = true;
$scope.ticketNotFound = false;
$location.search("ticketid", pinTicket);


})
.error(function(data, status, headers, config) {

$scope.ticketNotFound = true;
$scope.showdetail = false;



})
.then(TicketDetails, ErrorResponse);

}

}

一切正常。我得到网址:http://localhost:60664/Home#?ticketid=8837278738,但我希望当用户单击按钮时将他重定向到带有这些参数的“体育”页面。 ..我怎样才能做到这一点?我尝试使用 window.location 但没有得到参数

最佳答案

您应该在配置中定义路由,然后当用户单击您的按钮时调用该路由。

您可以使用 ng-route或更扩展的版本 ui-router .

关于javascript - 如何向重定向页面传递参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30936110/

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