如何在节点中读取带有标头的服务器发送数据

时间:2016-10-28 18:20:12

标签: ajax node.js

我正在尝试使用这样的ajax发送数据:

        xhttp.open("post", "addTeam", true);
        xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        xhttp.send("tName=" + tName);

我怎样才能在服务器上获取它,我尝试这样做:

var tournamentName = req.headers.tName;

var tournamentName = req.headers; 但是我看不到它,你有什么想法,感谢你的回复 我还说我使用bodyParser

1 个答案:

答案 0 :(得分:0)

请试试这个:

var tournamentName = req.query.tName

另外,请看一下:request query