我有一個具有輸入數據的ajax get請求。我想將這些數據傳遞給一個變量並在我的查詢中使用它。將ajax值傳遞給node.js服務器中的變量
index.handlebars
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<input type="hidden" class="test" name="test" value="sample"/>
<script type="text/javascript">
$(document).ready(function() {
var username = $('.test').val();
$.ajax({
type : 'GET',
url: '/users//welcome',
data : {
wew: username
}
});
alert(username); //correct output
});
</script>
</body>
</html>
,並在我的用戶/歡迎
router.get('/welcome', ensureAuthenticated, function(req, res){
var test = req.query.wew; //data from ajax request
Item.find({username: test},function(err, docs, test){
//where username is the data
console.log(test);
res.render('welcome', {docs:docs});
});
});
此代碼不能正常工作。請幫忙:/
「的代碼是不工作」是非常廣泛 - 你能解釋一下你的問題嗎 –
我想將ajax數據存儲到server.js中的一個變量中。第二組代碼是我的服務器 –
,因此您需要將數據從瀏覽器發送到服務器? –