从快速发布请求发送数据

时间:2016-10-23 21:44:55

标签: ajax node.js express

我正在玩Node.js和Express。

我的前端有这样的事情:

$.ajax({
        type: "POST",
        url: window.location.href,
        dataType: "jsonp", // expecting cross domain requests later
        data: {"url":url}, // this is not relevant for this question
        success: function(data){
             console.log("data received");
        }
});

这是我的快递后端,

app.post("/", function(req, res){
   res.send("Hello");    
}

但是,“Hello”不会被发送过来。当有帖子请求时,是否有不同的语法来发送数据?我在这里错过了什么吗?

0 个答案:

没有答案