嗨,我有一个 jsp 页面,该页面在执行动作类并返回视图后正在加载。我的 url
http://localhost/search.do?operation=searchData&place=Bangalore
在 jsp 页面中我需要使用这个完整的 url 并将更多参数附加到 url 并发送请求。我的问题是我如何在 jsp 中获得确切的 url,因为它在地址栏中有????我使用了以下方法,但这些方法并没有给我我所期望的
<%=request.getRequestURL() %>
<%=request.getRequestURI() %>
<%=request.getServletPath() %>
这些给了我以下
http://localhost/jsp/gridSearch.jsp
/jsp/gridSearch.jsp
/jsp/gridSearch.jsp
分别。有没有办法获得地址栏中的确切地址?喜欢http://localhost/search.do?operation=searchData&place=Bangalore