原生html点击按钮上传文件(隐藏file输入框)

html 复制代码
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>html文件上传(隐藏输入框版本)</title>
  </head>
  <body>
    <button>点击上传文件</button>
    <input type="file" name="" id="" hidden />

    <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
    <script>
      let btn = document.querySelector("button");
      let input = document.querySelector("input");

      btn.onclick = function() {
        input.click();
      };

      input.onchange = async function() {
        var file = input.files[0]; // 获取文件对象

        if (!file) {
          console.log("请选择图片");
          return;
        }
        if (!file.type.startsWith("image")) {
          console.log("只能上传图片");
          file = null;
          return;
        }

        console.log("file", file);

        var formData = new FormData();
        formData.append("file", file); // 添加文件到formData对象

        // 其它参数
        formData.append("venue_id", this.$route.params.venue_id);
        formData.append("type", "logo");
        formData.append("user_id", this.user_id);
        // formData本质就是一个大对象,如果使用了formData,就直接把formData对象传给后台即可,需要什么参数直接在formData对象中添加即可
        // 如果直接使用formData作为数据传的话,如{file:foreData,venue_id:this.$route.params.venue_id} 会导致后台接收不到venue_id,并且接收到的file也是空对象

        // 上传图片
        let res = await axios.post("/ptpro/Publicpush/uploadImage", formData, {
          headers: {
            "Content-Type": "multipart/form-data",
          },
        });
        console.log("res", res);
      };
    </script>
  </body>
</html>
相关推荐
逐·風2 小时前
unity关于自定义渲染、内存管理、性能调优、复杂物理模拟、并行计算以及插件开发
前端·unity·c#
Devil枫2 小时前
Vue 3 单元测试与E2E测试
前端·vue.js·单元测试
尚梦3 小时前
uni-app 封装刘海状态栏(适用小程序, h5, 头条小程序)
前端·小程序·uni-app
GIS程序媛—椰子3 小时前
【Vue 全家桶】6、vue-router 路由(更新中)
前端·vue.js
前端青山4 小时前
Node.js-增强 API 安全性和性能优化
开发语言·前端·javascript·性能优化·前端框架·node.js
毕业设计制作和分享4 小时前
ssm《数据库系统原理》课程平台的设计与实现+vue
前端·数据库·vue.js·oracle·mybatis
从兄5 小时前
vue 使用docx-preview 预览替换文档内的特定变量
javascript·vue.js·ecmascript
清灵xmf6 小时前
在 Vue 中实现与优化轮询技术
前端·javascript·vue·轮询
大佩梨6 小时前
VUE+Vite之环境文件配置及使用环境变量
前端
GDAL6 小时前
npm入门教程1:npm简介
前端·npm·node.js