0

我试图通过链接发送 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>

但没有任何工作。你能帮助我吗?

4

1 回答 1

4

帮自己一个忙,并使用 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>
于 2012-07-22T17:13:20.037 回答