gpt4 book ai didi

javascript - 将新项目插入数组时出错

转载 作者:行者123 更新时间:2023-12-02 17:41:33 25 4
gpt4 key购买 nike

imgFileName = new Array();
imgFileName = imgFileName.push(escape(theFile.name));

假设每次执行函数时 theFile.name 都会发生变化。

我控制台记录 imgFilename 它返回 1?

我想要的是通过推送将值存储到数组中。

最佳答案

数组 .push()方法在将元素添加到数组后返回数组的长度,因此您要更改 imgFileName 变量来保存数组的长度。

你可以这样做:

var imgFileNames = [];
imgFileNames.push(escape(theFile.name));

如果您需要使用文件名:

var imgFileNames = [];
var fileName = escape(theFile.name);
imgFileNames.push(fileName);

需要明确的是,您不会希望每次在将文件名推送到数组之前都创建该数组。您将需要创建一次。

关于javascript - 将新项目插入数组时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22162518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com