0

我的 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])); });

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

4

1 回答 1

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 不返回数组。修改了代码,现在应该可以了。

于 2015-05-16T15:28:15.040 回答