我正在尝试对带有文件附件的表单进行服务器端验证。我无法弄清楚获取文件大小的正确语法。我尝试过:
form.myFile.files[0].size;
form.myFile.file.size;
form.myFile.getSize();
form.myFile.getName(); // this works and does return the name of the file.
<input type="file" id="myFile">
然后,在* .gs页面上-doGet()-然后提取表格。
有什么想法吗?非常感谢!!!
答案 0 :(得分:0)
form.myFile.length; // that worked!