我发送ajax请求:
var dataString = "{u:" + user + ", p:" + pa + "}";
$.ajax({
type: "POST",
url: "lg.html",
data: dataString,
success: function(data){
if(data){
window.location = "http://localhost:8001/ea.html";
}
else{
console.log(data);
}
}
});
现在,我在 node.js 中有我的服务器:
http.createServer(req).listen(8000);
function req(request, response){}
我想获取我的表单数据属性,所以我执行以下操作:
request.data;
但我看到 req.data 是未定义的。如何获取我的数据属性?