我试图通过链接发送 id-property 的值
<html:link action="action?method=view&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&newsID=${newsID}">
View
</html:link>
但没有任何工作。你能帮助我吗?