- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
不久前,I asked a question使用此示例 JS 代码...
for (var myindex = 0; myindex < mylist.length; myindex += 1) {
var copyindex = myindex;
MyAsync(mylist[myindex], function () { alert(copyindex); });
}
(答案基本上是调用一个命名函数,它使循环中的每个变量保持独立。)
我今天的问题是,上面的示例代码中到底发生了什么?每个警报调用都会传递相同的 copyindex 变量,即使每次循环时都会声明一个新变量。
这种行为是JS语言所要求的吗? (通过声明一个具有 block 范围的变量,我实际上是在函数的顶部声明它。)
或者,这可能是我测试过的少数浏览器的实现细节, future 的 JS 平台没有义务将 copyindex 的许多实例链接在一起?
最佳答案
Each alert call is being passed the same copyindex variable, even though a new one is being declared each time...
这是一个常见的误解。 var
没有 block 范围,所以你的代码真的是这样的:
var copyindex;
for (var myindex = 0; myindex < mylist.length; myindex += 1) {
copyindex = myindex;
MyAsync(mylist[myindex], function () { alert(copyindex); });
}
更多(在我的博客上):Poor, misunderstood var
当然,在规范中——它包含在 §10.5 - Declaration Binding Instantiation 中.
ES6 将通过 let
关键字引入 block 作用域变量。 使用 let
关键字的位置非常重要。
让我们举一个更简单的例子,从 var
开始:
for (var x = 0; x < 3; ++x) {
setTimeout(function() { console.log("x = " + x); }, 0);
}
console.log("typeof x = " + typeof x);
我们知道这会给我们
number333
...because var
is hoisted to the top of the scope, and so the same x
is used by all three functions we create, and x
exists outside the loop. (We see the typeof
result first, of course, because the others happen after the minimal timeout.)
If we use let
instead, in that same place:
for (let x = 0; x < 3; ++x) {
setTimeout(function() { console.log("x = " + x); }, 0);
}
console.log("typeof x = " + typeof x);
我们得到
undefined333
...because x
is scoped to the loop, not loop iterations. All three functions still use the same x
, the only difference is that x
doesn't exist outside the loop.
But if we use let
within the body:
for (let n = 0; n < 3; ++n) {
let x = n;
setTimeout(function() { console.log("x = " + x); }, 0);
}
console.log("typeof x = " + typeof x);
我们得到
undefined012
...因为现在 x
的范围是每次迭代的主体,而不是整个循环。
您可以使用 NodeJS 自己尝试这些,只需确保为其提供 --harmony
标志以启用 ES6 功能。
关于javascript - 当 JS 闭包使用 block 作用域变量时会发生什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24078266/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!