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,(这里我理解为防止返回的请求再次发送到后端,导致出现‘无限套娃’。
这里有以下几种解决办法来查看请求:

  1. 返回更具体的数据,例如req.params,req.query…
  2. 在服务端查看req,可以使用consolel.og()等
  3. 安装模块: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)); })
    有什么问题还请留言哈,下期见!!!
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐