如果没有结果,当运行搜索时,会向表中添加“未找到结果”行。当运行无效搜索时,例如搜索假国家的用户。我需要访问标签数据库并输入无效的国家/地区错误,而不是“未找到结果”。
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.