使用servlet的jQuery自动完成UI不会返回任何数据
我一直在摆弄过去几个小时的代码片段,但我无法理解jQuery的自动完成UI如何工作。 我遵循本教程http://viralpatel.net/blogs/tutorial-create-autocomplete-feature-with-java-jsp-jquery/我使用了相同的示例,但不是向JSP发送请求,而是使用了一个servlet。 请求到达servlet“Fetcher”,它也会执行,但没有任何内容返回到页面。 这是代码。
public class Fetcher extends HttpServlet {
[...]
List<String> countryList = new ArrayList<String>();
String param = request.getParameter("term");
countryList.add("USA");
countryList.add("Pakistan");
countryList.add("Britain");
countryList.add("India");
countryList.add("Italy");
countryList.add("Ireland");
countryList.add("Bangladesh");
countryList.add("Brazil");
countryList.add("United Arab Emirates");
PrintWriter out = response.getWriter();
response.setContentType("text/plain");
response.setHeader("Cache-Control", "no-cache");
for(String country : countryList){
out.println(country);
}
[...]
}
HTML中的JavaScript片段:
<script>
$(function() {
$( "#tags" ).autocomplete({
source: "Fetcher"
});
});
</script>
HTML表单:
<label for="tags">Tags: </label>
<input id="tags" />
该页面上的例子似乎写在jQuery中的专业版,http://jqueryui.com/autocomplete/#default。 请有人能说出它的工作原理,以便我可以在其他地方使用它。
该servlet应该将自动填充数据作为JSON返回。 有几个选项,我选择了一个包含具有标签/值属性的对象的数组:
@WebServlet("/autocomplete/*")
public class AutoCompleteServlet extends HttpServlet {
@Override
protected void doPost(final HttpServletRequest request,
final HttpServletResponse response) throws ServletException,
IOException {
final List<String> countryList = new ArrayList<String>();
countryList.add("USA");
countryList.add("Pakistan");
countryList.add("Britain");
countryList.add("India");
countryList.add("Italy");
countryList.add("Ireland");
countryList.add("Bangladesh");
countryList.add("Brazil");
countryList.add("United Arab Emirates");
Collections.sort(countryList);
// Map real data into JSON
response.setContentType("application/json");
final String param = request.getParameter("term");
final List<AutoCompleteData> result = new ArrayList<AutoCompleteData>();
for (final String country : countryList) {
if (country.toLowerCase().startsWith(param.toLowerCase())) {
result.add(new AutoCompleteData(country, country));
}
}
response.getWriter().write(new Gson().toJson(result));
}
}
要返回自动完成数据,你可以使用这个辅助类:
class AutoCompleteData {
private final String label;
private final String value;
public AutoCompleteData(String _label, String _value) {
super();
this.label = _label;
this.value = _value;
}
public final String getLabel() {
return this.label;
}
public final String getValue() {
return this.value;
}
}
所以在servlet中,真实数据被映射成适合jQuery自动完成的表单。 我选择了Google GSON将结果序列化为JSON。
有关:
至于HTML文档 (用.jsp实现),选择正确的库,样式表和样式:
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.js"> </script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"> </script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
<script type="text/javascript" src="autoComplete.js"> </script>
</head>
<body>
<form>
<div class="ui-widget">
<label for="country">Country: </label>
<input id="country" />
</div>
</form>
</body>
</html>
相关:jQuery自动完成演示
我已经把Javascript函数放在一个单独的文件autoComplete.js
:
$(document).ready(function() {
$(function() {
$("#country").autocomplete({
source: function(request, response) {
$.ajax({
url: "/your_webapp_context_here/autocomplete/",
type: "POST",
data: { term: request.term },
dataType: "json",
success: function(data) {
response(data);
}
});
}
});
});
});
自动完成功能使用AJAX请求来调用该servlet。 由于servlet的结果是合适的,因此可以按原样用于响应。
有关:
上一篇: jQuery autocomplete UI with servlet is not returning any data
下一篇: how to convert PrintWriter to String or write to a File?