我正在尝试读取URL以从中提取数据,然后在?
拆分URL而不重新加载页面。我该怎么做?
我这样做的原因是我可以将名称从一个页面传递到另一个页面以进行显示。
请不要jQuery,因为我无法在我的开发工作区中使用它。
我的网址如下http://localhost:3000/view/1?Username=Dan
我想阅读Username=Dan
,然后将其从网址中删除,以便客户端无法看到它。
答案 0 :(得分:0)
If you want to save state of your application, don't use URL parameters in this way, store it in localStorage
:
Save it on the first page:
localStorage.setItem('name', 'Dan');
And read it on the following page:
let name = localStorage.getItem('name')
Or, if you don't need it to live longer than the session, use sessionStorage
(it has an identical API).