检查复杂JavaScript对象的完整性

时间:2011-05-13 14:59:13

标签: javascript object integrity

在JavaScript中测试复杂对象的完整性的最佳方法是什么?

我的对象有一堆不同的变量,一些是可选的,一些是必需的。正确的结构对于代码的功能至关重要,但如果我在定义过程中犯了错误,找到导致问题的确切值可能会非常繁琐。特别是错误消息告诉我的只是“代码中的Somwehere你使用了错误的变量类型!”。

我的对象看起来像这样,例如:

{
  name:"Test",
  categories:{
    A:{
      depth:1,
      groups:{
        main:[
          {myFunction:funcA, arg:[1,2]},
          {myFunction:funcB}
        ]
      }
    },
    B:{
      groups{
        main:[
          {myFunction:funcC}
        ],
        secondary:[
          {myFunction:funcD}           
        ]
      }
    }
  }
}

谢谢!

4 个答案:

答案 0 :(得分:4)

除了编写一个接收对象作为输入的函数,并且验证它具有“正确”结构之外,没有一种好方法可以做到这一点。

function isValid(obj)
{
    if (!o) return false;
    if (typeof o.name !== 'string') return false;
    if (typeof o.categories !== 'object') return false;
    if (typeof o.categories.a !== 'object') return false;
    if (typeof o.categories.b !== 'object') return false;
    // etc...

    return true;
}

另一方面,您可以定义一个构造函数,该构造函数接受正确构造对象所需的任何参数。

function MyObj(name, categoryNames /* other args */)
{
    this.name = name;
    this.categories = {};

    for (var i=0; i<categoryNames.length; i++)
    {
        this.categories[categoryNames[i]] =
        {
            groups: {main: []}
        };
    }

    // etc
}

// use it like this:
var foo = new MyObj('Test', ['A', 'B'] /* other args */);

答案 1 :(得分:0)

好的,这就是我解决它的方法:我创建了一个对象来定义我的复杂对象应该是什么样子。蓝图,在某种程度上。

var structure = {
  property1: {id:"name", type:"string", required:false},
  property2: {
    id:"categories", type:"object", required:true,
    content:{
      property1:{
        type:"object", min:1,
        content:{
          property1:{id:"depth", type:"positiveinteger", required:false},
          property2:{
            id:"groups", type:"object", required:true,
            content:{
              property1:{
                type:"array", min:1,
                content:{
                  type:"object", min:1,
                  content:{
                    property1:{id:"myFunction", type:"function", required:true},
                    property2:{id:"args", type:"array", required:false},
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

然后我运行一个函数,将蓝图(“struct”)与要测试的对象(“def”)进行比较:

function compareStructure(struct, def){
  if(isArray(def)){
    if(isDefined(struct.min) && def.length < struct.min){ alert("Error in structur check: " + " min is " + struct.min + "."); return false}
    if(isDefined(struct.max) && def.length > struct.max){ alert("Error in structur check: " + " max is " + struct.max + "."); return false}
    for(var i = 0; i < def.length; i++){
      compareStructure(struct.content, def[i]);
    }
  } else {
    for(var k in struct){
      if(struct[k].id){
        propFound = false;
        for(var m in def) if(m == struct[k].id) propFound = m;
        if(!propFound && struct[k].required){ alert("Error in structure check:  " + struct[k].id + " not defined."); return false}
        if(propFound && !verifyThis(struct[k], def[propFound], propFound)) return false;
        if(propFound && struct[k].content) compareStructure(struct[k].content, def[propFound]);
      } else {
        for(var m in def){
          if(!verifyThis(struct[k], def[m], m)) return false;
          if(struct[k].content) compareStructure(struct[k].content, def[m]);
        }
      }
    }
  }
}

function verifyThis(struct, def, prop){
  // This is where the checks for types and values are made.
}

比较功能仍在进行中,但这就是我现在要采用的概念。

答案 2 :(得分:-1)

您可以尝试针对JSON Schema

验证您的对象

但这可能是一种矫枉过正。

答案 3 :(得分:-1)

您可能会尝试JSON Schema Validation。您可能需要进行一些修改以考虑到您可以拥有在JSON中无效的函数这一事实。