我正在捕获当前URL,因为它显示在我的JSP页面的浏览器地址栏中,并且没有多少选项可以完成它.
>使用javax.servlet.include.request_uri和Servlet 2.4规范中定义的其他内容.我引用此线程获取有关它的详细信息java-httpservletrequest-get-url-in-browsers-url-bar.
在我目前的应用程序中,我们将把web服务器放在我们的应用程序服务器前面,而不是看起来这些值没有任何用处.
我有另一种方法来获取javascript文档的帮助.URL但我不确定它会有多可靠.
我需要获取有关用户位置的详细信息,如果我可以使用getRequestURI(),它将返回类似www.abc.com/abc/search.jsp的内容.
简而言之,我只想捕获浏览器地址栏中的URL,并将其保存在JSP页面的隐藏字段中.
我不确定实现这一目标的最佳方法是什么.
最佳答案
如果你想要一个javascript解决方案,你可以使用window.document.location对象及其属性:
原文链接:https://www.f2er.com/js/429164.htmlconsole.log(window.document.location.protocol);
http:
console.log(window.document.location.host);
stackoverflow.com
console.log(window.document.location.port);
console.log(window.document.location.href);
https://stackoverflow.com/questions/10845606/get-current-url-in-webapplication
console.log(window.document.location.pathname);
/questions/10845606/get-current-url-in-webapplication
您可以在MDN上了解读取this article的其他参数.