url = localhost:8080/v1/chat/result?str=The 我在html中应该如何获取str的变量呢
时间: 2024-01-10 13:04:19 浏览: 87
你可以通过JavaScript中的URLSearchParams对象获取URL中的查询参数。你可以使用以下代码来获取str变量:
```javascript
const urlParams = new URLSearchParams(window.location.search);
const str = urlParams.get('str');
```
这将从当前URL的查询参数中获取名为"str"的变量的值并将其存储在变量"str"中。
阅读全文