服务端返回req报错: Converting circular structure to JSON--> starting at object with construct ‘Socket‘
TypeError: Converting circular structure to JSON–> starting at object with constructor ‘Socket’|property ‘parser’ -> object with constructor ‘HTTPParser’— property ‘socket’ closes the circle#在使用
·
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,(这里我理解为防止返回的请求再次发送到后端,导致出现‘无限套娃’。
这里有以下几种解决办法来查看请求:
- 返回更具体的数据,例如req.params,req.query…
- 在服务端查看req,可以使用consolel.og()等
- 安装模块:
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)); })
有什么问题还请留言哈,下期见!!!
更多推荐
已为社区贡献2条内容
所有评论(0)