liferay 模板:如何编码 url
由于某种原因,当我在 Internet Explorer 中使用 liferay 时,它似乎不接受 cookie。 所以我想我需要对我的网址进行编码。
我尝试了 httpUtil.encodeURL('http://x.com/y',true)
但这只是让我 http://x.com/y 而不附加 JSessionID。
For some reason when I'm using liferay in internet explorer it does not seem to accept cookies.
So I guess I need to encode my URLs.
I tried httpUtil.encodeURL('http://x.com/y',true)
but that just gets me http://x.com/y again without the JSessionID appended.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
VelocityTools 有一个 LinkTool 也可以对 url 进行编码。另外,请确保已创建会话。
VelocityTools has a LinkTool that can encode urls too. Also, make sure that a session has been created.
EscapeTool 是 LinkTool 的替代品
The EscapeTool is an alternative to the LinkTool