开发者

Unable to render image which has a space in the url

开发者 https://www.devze.com 2023-02-08 17:16 出处:网络
<h:graphicImage value=\"/sky blue/img/logo.png\"/> Unable to render the above image which ha开发者_如何转开发s a space in the URL, how should I encode the space between \"sky\" and \"blue\"Spa
<h:graphicImage value="/sky blue/img/logo.png"/>

Unable to render the above image which ha开发者_如何转开发s a space in the URL, how should I encode the space between "sky" and "blue"


Spaces in URIs must be represented as %20 (or + in form encoded data)


Try: value="/sky%20blue/img/logo.png"

0

精彩评论

暂无评论...
验证码 换一张
取 消