TypeError: Converting circular structure to JSON
–> starting at object with constructor ‘Socket’
| property ‘parser’ -> object with constructor ‘HTTPParser’
— property ‘socket’ closes the circle
#在使用express搭建一个简易服务器时,测试接口发现get能过,并且能成功返回req.params等来查看响应,但是post返回不了req,但是却能返回req.body…
后来查资料,捋了一下思路,发现get也不能直接返回req,(这里我理解为防止返回的请求再次发送到后端,导致出现‘无限套娃’。
这里有以下几种解决办法来查看请求:
npm i circular-json
,再导入var circularJson = require('circular-json');
最后用circularJson.stringify包装一下:app.post('/', urlencodedParser,function(req, res){ console.log(' pots req',req.body); res.send(circularJSON.stringify(req)); })