解析由CircularJSON序列化的JSON

时间:2015-05-16 14:36:10

标签: javascript json angularjs node.js contentful

我的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"

我在浏览器中尝试了以下内容:

  1. circular-json.js版本复制到我的前端网站
  2. index.html中的脚本相关联,如下所示:<script src="/framework/lib/circular-json.js"></script>
  3. 设置CircularJson变量,如下所示:var CircularJSON = window.CircularJSON;
  4. 解析传入的JSON,如下所示:

    $http.get("/api/entries").then(function(res){ console.log(CircularJSON.parse(res.data[0])); });

  5. 我收到以下错误: SyntaxError: Unexpected token o

1 个答案:

答案 0 :(得分:0)

对于一次性通话我认为你可以使用$ http如下

function appendTransform(defaults, transform) {

  // We can't guarantee that the default transformation is an array
  defaults = angular.isArray(defaults) ? defaults : [defaults];

  // Append the new transformation to the defaults
  defaults.unshift(transform);
  return defaults;
}

$http({
  url: '...',
  method: 'GET',
  transformResponse: appendTransform($http.defaults.transformResponse,                function(value) {
    return CircularJSON.parse(value);
  })
});

或者对于每次调用你都可以定义一个拦截器,例子如下:https://docs.angularjs.org/api/ng/service/ $ http

更新: Unshift不会返回数组。修改了代码,现在它应该可以工作。