0

我正在使用显示标签来创建表格。一列有一个附加了参数名称和值的 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=

(注意 equal 之后什么都没有)

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

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

当参数 respID 没有值时,我该怎么做才能不出现任何内容

4

1 回答 1

0

你是如何创建网址的?

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

<c:if test="${not empty variableName}">
    variableName is not empty or null.
</c:if>
于 2013-05-08T04:26:30.543 回答