无法在 Chrome 开发人员工具控制台中更改变量
Can't change variable in Chrome Developer Tools Console
我曾经能够在 javascript 函数中放置断点并更改变量值以进行调试。直到最近(一两周内)才有效。
这是一个例子:
function test(params) {
var result = params.num * 2;
// if I put a break point here and change result = undefined,
// it doesn't work
return result;
}
// I should get 6, but when debugging and changing result to undefined,
// I should get undefined in my output, used to, not anymore
var x = test({ num: 3 });
console.log(x);
我正在使用 OSX Yosemite Chrome v. 49.0.2623.110(64 位)
它是最新的,我刚刚重新启动 Chrome。
我一直这样做,但最近发生了一些事情,我不能再这样做了。任何帮助将不胜感激。
谢谢
这似乎已经记录了一段时间的行为。就在昨天,对代码进行了更改,表示它将恢复更改变量的能力。令人非常失望的是,他们允许它中断任何时间。
我曾经能够在 javascript 函数中放置断点并更改变量值以进行调试。直到最近(一两周内)才有效。
这是一个例子:
function test(params) {
var result = params.num * 2;
// if I put a break point here and change result = undefined,
// it doesn't work
return result;
}
// I should get 6, but when debugging and changing result to undefined,
// I should get undefined in my output, used to, not anymore
var x = test({ num: 3 });
console.log(x);
我正在使用 OSX Yosemite Chrome v. 49.0.2623.110(64 位)
它是最新的,我刚刚重新启动 Chrome。
我一直这样做,但最近发生了一些事情,我不能再这样做了。任何帮助将不胜感激。
谢谢
这似乎已经记录了一段时间的行为。就在昨天,对代码进行了更改,表示它将恢复更改变量的能力。令人非常失望的是,他们允许它中断任何时间。