使用Nodejs Post Request

时间:2017-04-22 21:12:13

标签: javascript node.js ajax express post

我正在尝试在我的Node应用中发布帖子请求;但是,我收到以下错误。

OPTIONS http://localhost:27017/postDebate net::ERR_EMPTY_RESPONSE

如何解决这个问题?

这是我的路线:

var express = require('express');
var router = express.Router();
var Debate = require('../models/debate');
var mdb = require('mongodb').MongoClient,
  ObjectId = require('mongodb').ObjectID,
  assert = require('assert');
var api_version = '1';
var url = 'mongodb://localhost:27017/debate';

router.post('/'+api_version+'/postDebate', function(req, res, next) {
  var debate = new Debate(req.body);
  console.log(debate, "here is the debate");
  debate.save(function(err) {
    if (err) throw err;
    console.log('Debate saved successfully!');
  });
  res.json(debate);
});

module.exports = router;

由于我在onclick调用我的ejs文件中的函数后调用此路由,这是我的javascript文件。

function postDebate() {
  var topic = document.getElementById('topic').value;
  var tags = document.getElementById('tags').value;
  var argument = document.getElementById('argument').value;

  var debateObject = {
    "topic": topic,
    "tags": tags,
    "argument": argument
  };
  console.log(topic, tags, argument);

  $.ajax({
    type: 'POST',
    data: JSON.stringify(debateObject),
    contentType: "application/json",
        //contentType: "application/x-www-form-urlencoded",
        dataType:'json',
        url: 'http://localhost:27017/post',                      
        success: function(data) {
          console.log(JSON.stringify(data), "This is the debateObject");                               
        },
        error: function(error) {
          console.log(error);
        }
      });
}

如何解决此错误?这有什么问题?

OPTIONS http://localhost:27017/postDebate net::ERR_EMPTY_RESPONSE

1 个答案:

答案 0 :(得分:0)

您需要在app级别添加CORS标头,并且必须在OPTIONS请求上运行res.end()

然后检查您的网址,您在模块上注册了一些名称,以便您的网址看起来像/ROUTER_MODULE_NAME/1/postDebate,但是从您的前端呼叫http://localhost:27017/post

这是我检查过的最小例子,它适用于我:

var express = require('express');
var router = express.Router();
var app = express();

app.use(function(req, res, next) {
    console.log('request', req.url, req.body, req.method);
    res.header("Access-Control-Allow-Origin", "*");
    res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept, x-token");
    if(req.method === 'OPTIONS') {
        res.end();
    }
    else {
        next();
    }
});

router.get('/hello', function(req, res, next) {
    res.end('hello world')
});

app.use('/router', router)

app.listen(8081)

//try in browser `$.get('http://127.0.0.1:8081/router/hello')`