用于检查JSON模式中的循环依赖性的任何工具

时间:2017-04-04 05:57:49

标签: circular-dependency circular-reference

我正在使用JSON文件并在Swagger 2.0 Parser and validator上对其进行了验证  它验证它但是给出了循环引用的错误,是否有任何免费的工具或网站来检测文件中循环引用的位置。

1 个答案:

答案 0 :(得分:2)

我认为您所寻找的内容已经回复here。 只需打开浏览器控制台并输入以下javascript:

即可
function isCyclic(obj) {
  var keys = [];
  var stack = [];
  var stackSet = new Set();
  var detected = false;

  function detect(obj, key) {
    if (typeof obj != 'object') { return; }

    if (stackSet.has(obj)) { // it's cyclic! Print the object and its locations.
      var oldindex = stack.indexOf(obj);
      var l1 = keys.join('.') + '.' + key;
      var l2 = keys.slice(0, oldindex + 1).join('.');
      console.log('CIRCULAR: ' + l1 + ' = ' + l2 + ' = ' + obj);
      console.log(obj);
      detected = true;
      return;
    }

    keys.push(key);
    stack.push(obj);
    stackSet.add(obj);
    for (var k in obj) { //dive on the object's children
      if (obj.hasOwnProperty(k)) { detect(obj[k], k); }
    }

    keys.pop();
    stack.pop();
    stackSet.delete(obj);
    return;
  }

  detect(obj, 'obj');
  return detected;
}

然后你调用IsCyclic(/*Json String*/),结果将显示循环引用的位置。