我有这样的消息
appSearch.urlApplicationInfo=http://localhost:8080/cgi-bin/snquery.pl?APPL_ID={0}
然后我想阅读并将其放入 Application Number 列。因此,当用户单击记录时,他/她将被导航到其他页面。
<display:table id="row">
<display:column title="Application Number" sortable="true" style="width=20%">
<html:link href="<bean:message key='appSearch.urlApplicationInfo' arg0='${row.applicationNumber}' />"> ${row.applicationNumber}</html:link>
</display:column>
</display:table>
我的方法不起作用,它没有读取消息并放入href
属性。期待收到你的消息。我非常感谢您的所有贡献!
固定:
改用<a href>
:
<a href="<bean:message key='appSearch.urlApplicationInfo' arg0='${row.applicationNumber}'/>">${row.applicationNumber}</a>
不管怎么说,还是要谢谢你!!!