displaytag url没有param值

时间:2013-05-08 04:01:13

标签: jsp displaytag

我正在使用display标签来创建表格。一列有一个带有参数名称和值的url。

<display:column value="response" url="/response.html" paramId="respID" paramProperty="respID"
style="text-align:center; " title="Response" sortable="false">
</display:column>

我遇到的问题是即使我创建了所有链接,也有某些链接没有respID的参数值。这些列的相应网址是

http://testlocalhost:7001/whpet/response.html?respID=

(注意平等后没有什么)

在正常情况下,网址形成为

http://testlocalhost:7001/whpet/response.html?respID=response-681

如果没有param respID的值

,我该怎么办才能显示任何内容

1 个答案:

答案 0 :(得分:0)

你是如何创建网址的?

你可以使用c:if jstl library来检查是否没有值,然后才创建url。

<c:if test="${not empty variableName}">
    variableName is not empty or null.
</c:if>