gpt4 book ai didi

react-native - React Native - 解析 URL 以获取查询变量

转载 作者:行者123 更新时间:2023-12-03 14:16:37 28 4
gpt4 key购买 nike

寻找一种解析 URL 的方法,以获取从 Linking 接收到的 React Native 中的查询变量。

我收到的 URL 是这样的:

url-app-scheme://somePage?someVar=someVal

我想从 URL 中获取 someVar 值。

有什么想法吗?

最佳答案

这应该可以解决问题

var url = "http://example.com?myVar=test&otherVariable=someData&number=123"

var regex = /[?&]([^=#]+)=([^&#]*)/g,
params = {},
match;
while (match = regex.exec(url)) {
params[match[1]] = match[2];
}
console.log(params)

关于react-native - React Native - 解析 URL 以获取查询变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44038180/

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