JSON.stringify 在循环 JSON 对象中不起作用。该怎么办?
例如,在 Node.js 中,如果我这样做:
JSON.stringify(req);
那么我会因为循环结构而失败。
有没有任何设置或方法可以轻松地将其字符串化并跳过结构的循环部分?
e.g., in Node.js, if I do this:
JSON.stringify(req);
Then I will fail because of circulative structure.
is there any setting or way to stringify it easily and skip the circulative part of structure?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Crockford 的库(请参阅 Cycle.js)https://github.com/douglascrockford/JSON-js支持循环对象编解码为json(+jsonpath)。
Crockford's library (see cycle.js) https://github.com/douglascrockford/JSON-js supports encoding and decoding of circular objects into json (+ jsonpath).