如何在jquery ajax请求中没有回调的情况下使用Node.js?

时间:2016-12-25 11:02:03

标签: javascript jquery ajax node.js mongodb

我已经花了很多时间来理解为什么我的Node.js服务使用postman工作得很好。如果你看下面你可以看到我的node.js服务工作正常。但是JQUERY代码(调用GetAllNotifyTypesFunc();)

给我错误:(如何在没有回调的情况下正确调用postman和jquery?)

enter image description here

Node.js:


'use strict';
var express = require("express");
var app = express();
var MongoClient = require('mongodb').MongoClient;
var router = express.Router();

app.get('/Notifies', function (req, res) {
    MongoClient.connect('mongodb://127.0.0.1:27017/Test', function (err, db) {
        if (err) throw err;
        var coll = db.collection('Notifies');
        coll.find({}).toArray(function (err, result) {
            if (err) {
                res.send(err);
            } else {

                // res.writeHead(200, {
                //   'Content-Type': 'application/json'
                //    });
                // res.end('callback(\'' + JSON.stringify(result) + '\')');
                res.writeHead(200, {
                    'Content-Type': 'application/json'
                });
                res.end(JSON.stringify(result));
                // res.json(result);
            }
        })
    })
});

var port = Number(process.env.PORT || 5000);
app.listen(port, function () {
    console.log("Listening on " + port);
})

如果我使用Postman:

enter image description here

    $(function () {

    GetAllNotifyTypesFunc();

});

var GetAllNotifyTypesFunc = function () {
    console.log("notify");

    $.ajax({
        url: 'http://127.0.0.1:5000/Notifies',
        dataType: "jsonp",
        async: false,
        //jsonpCallback: "callback",
        cache: false,
        timeout: 5000,
        success: function (data) {
            console.log(data);
            console.log(JSON.parse(data));
        },
        error: function (jqXHR, textStatus, errorThrown) {
            alert('error ' + textStatus + " " + errorThrown);
        }
    });


}

1 个答案:

答案 0 :(得分:1)

你说jquery响应将是jsonp,但它是json。你需要检查区别,我想你应该使用:

dataType: "json",

jsonp是可执行函数,请参阅(What are the differences between JSON and JSONP?