刚刚学nodejs,想用ajax实现登录的功能,实在没什么概念。 前端代码
$(function(){
$("#submit").click(function(){
var params ={
username: $("#username").val(),
password: $("#password").val()
};
$.ajax({
data: params,
url: 'http://127.0.0.1:3000/',
dataType: 'json',
cache: false,
timeout: 5000,
success: function(data){
var data = $.parseJSON(data);
alert(data.message);
},
error: function(jqXHR, textStatus, errorThrown){
alert('error ' + textStatus + " " + errorThrown);
}
});
});
});
后端要怎么写呢?我只想做后端获得数据就行了。
module.exports = function(app){
app.get('/',function(req,res){
console.log(req.body['username']);
res.render('index',{
title: 'ajax'
});
});
}
获得的却是undefine,且路径都发生了变化。 刚刚学习nodejs,求指教