我的Vue应用程序不需要路由,所以我没有将Vue路由器包添加到我的项目中。
给定 * App.vue * 的以下示例代码
<script setup lang="ts">
import { onMounted } from "vue";
onMounted(() => {
const routeHashContent = window.location.hash.substring(1);
const hashParameters = new URLSearchParams(routeHashContent);
const hashParameter = hashParameters.get("foo");
if (hashParameter === null) {
console.log("not found.");
return;
}
console.log(hashParameter);
});
</script>
<template />
我可以用网址调用应用程序
请参阅
有没有办法去掉哈希值呢?URL可能看起来像这样
您可以在
我应该使用哪个代码来代替const routeHashContent = window.location.hash.substring(1);
来获取查询?
2条答案
按热度按时间vbkedwbf1#
可以使用以下命令创建URL对象
此对象包含作为变量
searchParams
的url搜索参数。按如下方式访问参数。
vulvrdjw2#
URLSearchParams是一个很好的方法-
但是如果你没有使用一个完整的URL或者使用一个自定义的URL来解析参数,那么你需要首先创建一个自定义URL的URL对象,然后对它应用搜索。为什么?阅读这里。