通过$.Ajax()方式上传文件,使用FormData进行Ajax请求

参考网址:https://blog.csdn.net/qq_41802303/article/details/80066160

 

==============================

我自己的代码:(用vue开发的,用的elementui)

 //文件上传
      upLoadFile(params) {
        console.log("文件上传的参数",params);
        var file = params.file;
        var that = this;
        const form = new FormData();
        // 文件对象
        form.append("file", file);
        $.ajax({
          url:"xxxxxx",
          type:"post",
          data:form,
          processData: false,
          contentType: false,
          success:function(res){
            console.log(res);
          }
        });
      },

 

posted @ 2020-04-26 11:31  smil、梵音  阅读(654)  评论(0编辑  收藏  举报