如何对 JSF 输出链接值进行 URL 编码
我有一些看起来与此类似的代码:
<h:outputLink value="#{bean.url}" />
但输出在链接 href 中包含一个撇号,该撇号不是 URL 编码的。
我做错了什么还是这是outputLink 的正常行为?提前致谢。
(JBoss 4.2、Java 1.6)
I've got some code that looks similar to this:
<h:outputLink value="#{bean.url}" />
But the output contains an apostrophe in the link href which is not URL encoded.
Am I doing something wrong or is this normal behaviour for outputLink? Thanks in advance.
(JBoss 4.2, Java 1.6)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它确实不会为你做到这一点。如果客户端不支持 cookie,它最多会附加
jsessionid
。只有使用
添加的链接参数才会进行 URL 编码。It indeed won't do that for you. It will at highest append the
jsessionid
for the case the client doesn't support cookies. Only the link parameters which are added using<f:param>
will be URL-encoded.