EL 中 window.location.href 的同义词 - 获取当前 URL
Synonym for window.location.href in EL - Get current URL
我需要获取当前 URL(在 javascript window.location.href
中)以获得我的 <spring:param>
的值(在创建回 URL 的上下文中)。对于参数的值,我必须使用表达式语言。这甚至可能吗,或者你有什么建议?谢谢解答!
Read This 提供。
因此,在 EL 中只有 ${pageContext.request.requestURL}.
I need to get current URL (in javascript window.location.href
)
HttpServletRequest#getRequestURL()
可用。
因此,在 EL 中因此 ${pageContext.request.requestURL}
。
我需要获取当前 URL(在 javascript window.location.href
中)以获得我的 <spring:param>
的值(在创建回 URL 的上下文中)。对于参数的值,我必须使用表达式语言。这甚至可能吗,或者你有什么建议?谢谢解答!
因此,在 EL 中只有 ${pageContext.request.requestURL}.
I need to get current URL (in javascript
window.location.href
)
HttpServletRequest#getRequestURL()
可用。
因此,在 EL 中因此 ${pageContext.request.requestURL}
。