我将 Contentful 与 MEAN 堆栈一起使用。我查询 Contentful API 并取回一个 json 对象。
contentClient.entries(query, function(err, entries){
if (err) throw err;
console.log(entries);
});
我刚刚收到以下错误:
[TypeError: Converting circular structure to JSON]
该对象很大(当我将其从控制台导出到文档时超过 3000 行)。所以我不能在这里发布它,但我想知道是否有办法找到对象内的循环结构问题以及如何解决这个问题?