- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
谁能解释一下 到底是什么?以太并举个例子?
来源:Long running tasks道格拉斯·克罗克福德的 YUI 博客
最佳答案
最初,我以为这只是 的拼写错误。迭代 ,因为在线搜索 eteration 不会产生显着的结果。
但是,然后,我遇到了references声明这个词是克罗克福德自己在他的一次谈话中创造的。
在网上,我唯一能找到解释的地方是他的页面,在 The Factorial Tutorial ,一篇文章,在 第 2 幕 ,作为对代码示例的评论,他指出:
Act 2a: message iteration (eteration)
Act 2b: message recursion (ecursion)
Eteration means to break a task into multiple turns so that on each eteration, instead of going through a conventional loop, at the bottom of the loop we call
setTimeOut
, passing it a function which causes us to do the next eteration. That means that the turns are going to be short — the turn's only as long as one eteration – and we can do as many eterations as we want and not lock up the event loop.
<html>
<head>
<script type="text/javascript">
function testFeedback()
{
var feedbackDiv = document.getElementById("feedbackDiv");
feedbackDiv.innerHTML += "The Interface is Still Responsive!</br>";
}
var currentNumber = 0;
var loopStepDelay = 30;
function performLoopStep()
{
var numbersDiv = document.getElementById("numbersDiv");
numbersDiv.innerHTML = currentNumber++;
setTimeout("performLoopStep()", loopStepDelay);
}
setTimeout("performLoopStep()", loopStepDelay);
</script>
</head>
<body>
<div id="numbersDiv"></div>
</br>
</br>
<div id="feedbackDiv"></div>
</br>
</br>
<button onClick="testFeedback()">Try Me</button>
<body>
</html>
div
s,一个显示正在进行的迭代的索引,另一个附加文本界面仍然响应!每按一下 Try Me 按钮。从代码中可以看出,迭代步骤由
setTimeout
安排。相隔一些时间间隔,允许用户交互发生并被处理。因此,当用户单击按钮并触发第二个 div 的更新时,迭代步骤将继续运行,从而保持页面的响应能力,同时完成它必须执行的工作的实际进展(在这种情况下,只是显示索引)。
关于javascript - Eteration - 解释和示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7184896/
谁能解释一下 到底是什么?以太并举个例子? 来源:Long running tasks道格拉斯·克罗克福德的 YUI 博客 最佳答案 最初,我以为这只是 的拼写错误。迭代 ,因为在线搜索 eterat
我是一名优秀的程序员,十分优秀!