1
我目前使用displaytag與Spring MVC的,像這樣:顯示標籤追加查詢參數進行排序URL
<display:table class="displayTag" name="${searchList}" requestURI="" sort="external">
<display:column title="Name" property="name" href="viewInstitution.htm" paramId="institution" paramProperty="dbId" sortable="true">
</display:table>
當鼠標懸停在姓名欄我得到像這樣的鏈接:
http://localhost:8080/webapp/institutionManagement.htm?sort=name&dir=desc
然而我想附加一些額外的參數到URI,例如:
http://localhost:8080/webapp/institutionManagement.htm?sort=name&dir=desc¶ma=value¶mb=value
這些是從後端在春天,我想將它們追加到每個排序鏈接的末尾。