再 IOS 中打开网页,并用 input 去获取文件信息:
<input type="file" />当我们选择文件的时候,我们可以得到文件的信息;
但是当 input 设置了 mutiple 属性之后,选择文件则会有误:
<input type="file" mutiple />选择视频文件时,结果是 file.size: 0,文件的大小是零,这是为什么?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
这么写试试
file变成类似数组的对象了,用file[0]读取第一个文件。