jQuery AJAX GET请求没有到达Node.JS(使用NGINX)

时间:2018-06-12 22:45:43

标签: javascript jquery node.js ajax nginx

我在下面遇到的问题仅在我将应用程序上传到服务器(Digital Ocean)时出现。在我的本地机器上工作时,我能够使其按照下面所述的代码工作。基本上,我的jQuery Ajax请求永远不会被我的Node.js代码捕获。您将看到我使用express运行服务器,但是我也将Nginx配置到服务器中。

节点设置:

   Create table dressing
(
    dressing_id int, 
    recipe_id int,
    constraint pk_dressing primary key (dressing_id, recipe_id),
    constraint fk_recipe foreign key (recipe_id) references recipe(recipe_id),
    constraint fk_dressing foreign key (dressing_id) references recipe(recipe_id)
); 

获取节点代码:

var express = require('express');
var app = express();
var request = require("request");
var db = require('mysql');
const path = require('path');
var http = require("http").Server(app);
var io = require("/usr/local/lib/node_modules/socket.io").listen(http);

http.listen(3000, 'localhost'); //At the end of everything between here and the code.

的Ajax:

app.use(express.static(__dirname + '/'));

app.get('/reqData',function(req,res){
    //I never arrive here
    console.log("print that I am here");
                transform(req.query.selection1,req.query.selection2,function(){
                res.json(data); //data is transformed globally  
                });

});

控制台日志: enter image description here

编辑2: 我已经使用服务器的ip编辑了ajax上的ip addres。 (没有端口)。我还附加了新的错误日志(在chrome控制台中)和nginx配置。

新的控制台日志 Chrome Console Error

NGINX配置: Chrome Log Nginx Config 1

0 个答案:

没有答案