我目前正在使用带有 spring MVC 的 displaytag,如下所示:
<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
这些是春天从后端发送的,我想将它们附加到每个排序链接的末尾。