Ajax请求失败

时间:2016-11-18 18:13:40

标签: javascript jquery ajax node.js express

邮政要求保持待定状态。 我想记录传入请求的JSON主体。 使用Postman时请求有效,但AJAX请求不起作用

节点代码:

var express = require('express');
var morgan = require('morgan');
var bodyParser = require('body-parser');

var hostname = 'localhost';
var port = 3000;

var app = express();

app.use(morgan('dev'));

var qRouter = express.Router();
qRouter.use(bodyParser.json());

qRouter.route('/')
.all(function(req,res,next) {
      res.header('Access-Control-Allow-Origin', "*")
      res.writeHead(200, { 'Content-Type': 'application/json' });
      next();
})
.post(function(req,res){
  console.log(req.body);
  res.end("lalal");
})
app.use('/play',qRouter);

app.listen(port, hostname, function(){
console.log(`Server running at http://${hostname}:${port}/`);
});

AJAX请求

    var d = {
    "rating": 5,
    "comment": "Sends anyone to heaven, I wish I could get my mother-in-law to eat it!",
        "author": "Paul McVites"
  }

  $.ajax({
      url: 'http://localhost:3000/play',
      type: 'POST',
      contentType: 'application/json',
      data: JSON.stringify(d)
  });

1 个答案:

答案 0 :(得分:0)

我认为你没有使用jQuery处理你的ajax调用的响应。您正在发送数据,但我没有看到您收到服务器响应。 POSTMAN会自动为您处理。