Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在我的网页上显示一个使用 jsp/html 制作的图像。当我使用以下代码时,我收到一条错误消息:
元素 img 上的属性 src 的“错误值”:PATH 中的 DOUBLE_WHITESPACE。
<img src="<%=item.getPicture()%>" width="100">
该函数getPicture()返回一个指向我需要的图像的 URL。
getPicture()
为什么这不起作用?