前端发起ajax请求以及打印传送信息 后端的express框架相关处理 // 路由获取post方式传递的数据app.post("/ajaxjs.js", function(request, response){ console.log(request.body); // this a json object response.send(req
后端的express框架相关处理
// 路由获取post方式传递的数据 app.post("/ajaxjs.js", function(request, response){ console.log(request.body); // this a json object response.send(request.body); // echo the result back });