JavaScript数组长度返回0
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript数组长度返回0相关的知识,希望对你有一定的参考价值。
[当我使用console.log打印数组长度时,它返回0。但是在控制台中,如果我写txt.length
,它将返回实际长度(在我的情况下为60)。因此,我无法遍历txt数组。
var txt;
function preload() {
txt = loadStrings("DataProcess/outData.txt");
console.log(txt);
console.log(txt.length);
}
答案
您需要在回调中获取长度。从文档中,该函数接受3个参数
loadStrings(filename, [callback], [errorCallback])
意味着您应该执行以下操作:
var txt;
function preload() {
loadStrings("DataProcess/outData.txt", (res) => {
txt = res
console.log(txt.length);
})
}
以上是关于JavaScript数组长度返回0的主要内容,如果未能解决你的问题,请参考以下文章
精心收集的 48 个 JavaScript 代码片段,仅需 30 秒就可理解!(转载)