【Error】2020-7-20记录

指定文件输入框可以多选文件:multiple属性

<input type="file" size="30" name="excel" multiple="multiple" accept="application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" onchange="uploadFile(this)">

指定可选择的文件类型:accept属性

  • xls文件:application/vnd.ms-excel
  • xlsx文件:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

多种类型用逗号隔开


Vue使用webpack打包后放入服务器(后端代码)的步骤,resources下创建一个static文件夹,然后把打包生成的dist里的static和index.html放入这个文件夹

这个时候重新启动项目访问可能访问不了这个index.html文件,需要maven clean一下,重新编译运行项目后才可以正常访问。