gpt4 book ai didi

javascript - 如何使用其他函数传递查询参数

转载 作者:数据小太阳 更新时间:2023-10-29 05:12:12 24 4
gpt4 key购买 nike

给定以下 javascript:

$stateProvider
.state('search', {
url: '/search?query',
})
;

$urlRouterProvider.otherwise("search");

当我访问页面时

base_url?query=x

我被重定向到

base_url/search

但是查询参数丢失了。

有没有办法用 otherwise 函数传递查询参数?

最佳答案

a working plunker

UI-Router 在这里有本地解决方案。

The otherwise does not have to be the "url" string, it could be a function.

在此问答中检查它的运行情况:

How not to change url when show 404 error page with ui-router

代码可能是这样的:

$urlRouterProvider.otherwise(function($injector, $location){
var state = $injector.get('$state');
state.go("search", $location.search()); // here we get { query: ... }
return $location.path();
});

$location.search() 将为我们提供 params 对象,它可能类似于:{ query: ... }。我们接受它并使用此参数重定向到状态搜索...

查一下here

关于javascript - 如何使用其他函数传递查询参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29947227/

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