我有一个带有一些输入的表格;每个输入都返回一个数据列表,该列表显示在另一个html页面的表中。每个输入都有一个表格来显示它的数据。我的任务是,如果用户没有输入输入,则不显示数据。
这是我的代码
<!-- Country Table-->
<%for(int i = 0; i < countryList.length;i++){
if(countryList.length == 0)
break;
%>
<div class="box" align="center">
<table name="tab" align="center" class="gridtable">
<thead >
<tr>
<th style="width: 50%" scope="col">Entity Watch List Key</th>
<th style="width: 50%" scope="col">Watch List Name</th>
</tr>
</thead>
<tbody>
<tr>
<td style="width: 50%"><%out.println((String) (countryList[i].getEntityWatchListKey()));%></td>
<td style="width: 50%"><%out.println((String) (countryList[i].getEntityName()));%></td>
</tr>
</tbody>
</table>
</div>
<%}%>
我正在使用break来循环以不显示表,这是真的吗?
答案 0 :(得分:0)
您可以在for循环之前使用此条件,
if(countryList.length != 0)
或
if(countryList.length > 0)
然后你不需要使用中断条件,
此外,您当前定义的for循环将不起作用,因为如果数组的长度为0,则此条件i < countryList.length将变为0 <0并且它将失败,因此您的for循环甚至不会被输入。所以当前条件if(countryList.length == 0)
将无法访问。
答案 1 :(得分:0)
请修改您的代码
<div class="box" align="center">
<table name="tab" align="center" class="gridtable">
<thead >
<tr>
<th style="width: 50%" scope="col">Entity Watch List Key</th>
<th style="width: 50%" scope="col">Watch List Name</th>
</tr>
</thead>
<tbody>
<%for(int i = 0; i < countryList.length;i++){
if(countryList.length > 0) %>
<tr>
<td style="width: 50%"><%out.println((String) (countryList[i].getEntityWatchListKey()));%></td>
<td style="width: 50%"><%out.println((String) (countryList[i].getEntityName()));%></td>
</tr>
<%}%>
</tbody>
</table>
</div>
对于一个好习惯,你必须重复行而不是表。