View 或 '/> View 但是没有任何-6ren">
gpt4 book ai didi

java - 通过发送参数值struts1

转载 作者:行者123 更新时间:2023-12-01 19:02:47 24 4
gpt4 key购买 nike

我尝试通过链接发送 id-property 的值

<html:link action="action?method=view&amp;newsID='<bean:write name="news" property="id"/>'">View</html:link>

<input type="hidden" name="newsID" value='<bean:write name="news" property="id"/>'/>
<html:link
action="action?method=view&amp;newsID=${newsID}">
View
</html:link>

但是没有任何效果。你能帮助我吗?

最佳答案

帮自己一个忙,使用 JSTL:

<c:url var="theUrl" value="/action.do">
<c:param name="method" value="view"/>
<c:param name="newsID" value="${news.id}"/>
</c:url>
<a href="${fn:escapeXml(theUrl)}">View</a>

关于java - 通过<html :link>发送参数值struts1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11602260/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com