如何根据内容而不是名称来查看变量?

时间:2016-05-20 00:43:14

标签: javascript global-variables local-variables javascript-debugger

我需要将包含特定字符串或整数值的所有变量替换为其他值。例如,将包含gnl.fr的所有变量的值替换为nlg.com 在windbg (windbg附加到Web浏览器进程)这可以这样实现:

.foreach (hit {s -[1]a 0 L?80000000 "gnl.fr"}) {ea ${hit} "nlg.com"}

然而,它会不时地删除关键值,使Web浏览器崩溃 绝对可以在JavaScript级别进行,而不是处理Web浏览器二进制文件。

我不想只为全局变量做这件事,但在任何地方都可能(我的意思是包含来自其他JavaScript函数的局部变量,而不是当前正在调试的函数)

问题是我甚至不知道如何搜索当前范围之外的变量。

在投票结束前不清楚请注意所有标签!

1 个答案:

答案 0 :(得分:1)

递归遍历每个对象及其子对象。修改特定的孩子。 为了防止与递归相关的错误,您可以指定您想要进入孩子的子级别。

以下示例的评论中的进一步说明:



/**
Replace all strings from @inObj matching @toReplace with @replaceWith
*/

var replace = function(inObj, toReplace, replaceWith, optionalArguments){



  console.log("before", inObj);

  var recursion = function(obj, recursionLevel){

    if(typeof recursionLevel === 'undefined'){
      recursionLevel = 0;
    }

    recursionLevel++;

    if(typeof optionalArguments !== 'undefined'){
      if( typeof optionalArguments.maxRecursionLevel !== 'undefined' && recursionLevel > optionalArguments.maxRecursionLevel ){ // simply return the object if maxRecursionLevel reached
        return obj;
      }
    }

    for(var b in obj) { 
      if(typeof obj.hasOwnProperty !== 'undefined' && obj.hasOwnProperty(b)){
        if(typeof obj[b] === "string"){ // element is a string - here we do the actual work: replacing the strings
          obj[b] = obj[b].replace(toReplace, replaceWith);
        }else if(typeof obj[b] === "object" && obj[b]){ // element is an object - call as an object "recursively"
          obj[b] = recursion(obj[b], recursionLevel);
        }
      }
    }
    return obj;
  }

  inObj = recursion(inObj);
  console.log("after", inObj);
  return inObj;
}


/**
example for a test object
*/
var testObj = {
  a: "abc",
  b: "xyz",
  c: {
    aa: {
      aaa: "abc",
      bbb: "abc"
    },
    bb: "abc"
  },
  d: {
    aa: "abc"
  }
};

replace(testObj, /bc/i, "X", {maxRecursionLevel:2}); // for two levels
//replace(testObj, /bc/i, "X");  // for all levels



/**
example for the global scope
*/
//replace(window, /gnl.fr/i, "nlg.com");