嗨我现在有一个字符串,我想把它发送到这样的插座中:
如果我有"问题",它首先发送: p ,然后 pr , pro ,然后问题,然后问题,然后问题,最后问题,但每次发送之间的延迟为x毫秒,所以我做了这个:
我是一个随机整数WORDS是一个字符串数组。
for (var l = 1; l <= WORDS[i].length; l++) {
// send 1 ... WORD_LENGTH
console.log(l);
setTimeout(function () {
// send length of the word and the word
cconsole.log(l + ": " + WORDS[i].substring(0, l)); // send me a WORD directly on the first try
}, 325 * l);
}
问题是它直接发给我这个词。
感谢。