这是 HTML:
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="/favbar.png" />
<!-- JavaScript -->
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.1/jquery-ui.js"></script>
<script type="text/javascript">
$(function () {
$("#search").autocomplete({
source: function( request, response ) {
$.ajax({
url: "/search",
dataType: "jsonp",
data: {
featureClass: "P",
style: "full",
maxRows: 12,
term: request.term
},
success: function( data ) {
response( $.map( data.results, function( item ) {
return {
label: item,
value: item
}
}));
}
});
}
});
});
</script>
<script src="/stylesheets/bootstrap/js/bootstrap.min.js"></script>
<!-- CSS -->
<link href="/stylesheets/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="/stylesheets/bootstrap/css/bootstrap.css" rel="stylesheet" media="screen">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/stylesheets/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link type="text/css" href="/stylesheets/bootstrapui/css/custom-theme/jquery-ui-1.10.0.custom.css" rel="stylesheet" />
</head>
<body>
<input type="text" id="search" class="search-query" placeholder="Search..." />
</head>
</body>
</html>
这是 node.js 代码:
app.post('/search', function (req, res){
var regex = new RegExp(req.body.term);
usermodel.aggregate({$match: { user: regex }}, function (err, users){
if (err) throw err;
var names = [];
for (var nam in users) {
names.push(users[nam].user);
}
var result = { results: names }
res.json(result);
});
});
此代码不起作用。我得到了完美的 AJAX 请求,问题是 Node.js 响应。我不知道是响应的类型,还是我发送它的方式。names
在一个包含所有结果的数组中,我像这样发送它{ result: names }
。也许我应该只发送res.json(result)
. 在某些示例中使用 GET 请求,而我使用 POST,我应该更改它吗?我使用 mongodb 和 mongoose 作为数据库。
我怎样才能做到这一点?谢谢提前!