gpt4 book ai didi

javascript - 从当前 URL 获取所有斜杠查询字符串值

转载 作者:行者123 更新时间:2023-12-01 00:37:50 25 4
gpt4 key购买 nike

我的当前页面网址如下:

https://example.com/product/view/faqlist/category_id/2/faq/219/

URL 将是动态的。这里,category_id 和 faq 是参数。我想得到这个值。

我尝试了下面的代码。但是,它仅在我仅添加一个查询字符串时才起作用。它不适用于多个。

我想获取category_id的值和faq查询字符串的值。我怎样才能做到这一点?

Note : I don't want to change query string from "/" to "?"

var pathname = window.location.pathname.split("/");
var filtered_path = pathname.filter(function(v){return v!==''});
var filename = filtered_path[filtered_path.length-1];

最佳答案

使用String#split和使用Array#indexOf参数的索引可以得到URL的查询字符串值的值。

var url = "https://example.com/product/view/faqlist/category_id/2/faq/219/";
var arr = url.split('/');

var a = arr[arr.indexOf('category_id') + 1];
var b = arr[arr.indexOf('faq') + 1];

console.log(a);
console.log(b);

关于javascript - 从当前 URL 获取所有斜杠查询字符串值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57950871/

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