从 JSTL 标记调用自定义 JSP 标记
我正在尝试从 JSTL 标记
调用我的自定义标记。 由于引号的存在,自定义标签显示为字符串而不是标签。 我可以在这里使用转义字符吗?
<img align="left" src="<c:url value='/getFile/getfile?<myTag:getValue type="web" name="person" />'/>" alt="person" title="person" width="55" height="70"/>
I'm trying to call my custom tag from the JSTL tag <c:url>
.
Because of the quotes, the custom tag is shown as a string instead of a tag.
Can I use an escape character here?
<img align="left" src="<c:url value='/getFile/getfile?<myTag:getValue type="web" name="person" />'/>" alt="person" title="person" width="55" height="70"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须首先将自定义标记的输出分配给临时变量,然后使用它
You'll have to assign the output of your custom tag to a temp variable first and then use it