0

如果没有结果,则运行搜索时,会在表中添加“未找到结果”行。运行无效搜索时,例如用户搜索虚假国家/地区。我需要访问标签数据库并输入无效国家错误而不是“未找到结果”。

if(SearchResults.empty){
   searchError.add(ss.getLabel("UASJSNSER", request));
   SearchResults.append(searchError);
}

这不会覆盖没有结果时发生的“未找到结果”。
SearchResults 是表,searchError 是发生搜索错误时保存错误的变量。

更新

SearchResults 是在搜索运行后填充数据的表。

<tr class="odd">
<td class=" sorting_1">0001UK</td>
<td class="">
<td class="">Pl,anPlus Inc</td>
<td class="">PlanPlus PlanIt</td>
<td class="">Permanent Access</td>
<td class=""></td>
<td class="">
<a href="loadAdvisor.do?planner=0001UK">Edit</a>
| 
<a href="javascript:popUp('deleteadvisor.jsp?action=&planner=0001UK');">Delete</a>
</td>
</tr> //this Is when a search happens that has results 

<tr class="odd">
<td class="dataTables_empty" valign="top" colspan="7">No records found</td>
</tr>
</tbody> //Instead of it saying No records found I need it to say the error I call from the database.
4

0 回答 0