我的 node.js 代码中有一个 JSON 对象,其中包含循环引用。为了将此数据发送到浏览器,我使用 NPM 模块circular-json对对象进行字符串化并序列化循环引用:
var CircularJSON = require("circular-json");
app.get("/api/entries", function(req, res){
contentClient.entries({"content_type": "xxxxxxxxxxx"}, function(err, entries){
if (err) throw err;
res.send(CircularJSON.stringify(entries));
});
});
这工作正常并通过res.send();
现在发送序列化数据,在我的前端 Angular 代码中,我需要使循环引用可用。对象中的序列化字段之一在客户端如下所示:"~0~fields~twitter~1"
我在浏览器中尝试了以下操作:
- 将一个版本复制
circular-json.js
到我的前端站点 - 链接到我
index.html
喜欢的脚本:<script src="/framework/lib/circular-json.js"></script>
- 像这样设置
CircularJson
变量:var CircularJSON = window.CircularJSON;
像这样解析传入的 JSON:
$http.get("/api/entries").then(function(res){ console.log(CircularJSON.parse(res.data[0])); });
我收到以下错误:
SyntaxError: Unexpected token o