浏览代码

undefined check

Ivan Asmer 8 年之前
父节点
当前提交
449c4061fd
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      static/nb.js

+ 3 - 0
static/nb.js

@@ -74,6 +74,9 @@ function nbInit(a,b){
     }
 
     function recursiveObjectSet(item, value){
+        if (typeof item === 'undefined'){
+            return;
+        }
         for (var key in value){
             if (typeof value[key] !== 'object'){
                 item[key] = value[key];