图片上传两次,ajax上传2次解决方案


直接说重点  

你用的是ajax就要注意  

1、第一种可能性   

你用了  sumbit  类型的 input来做提交

2、你$,ajax 请求没有用同步   

 async: false,
            cache: false,
        $.ajax({
            url: myData.url,
            type: "post",
            data: formData,
            dataType: "json",
            async: false,
            cache: false,
加上去看看  

3.要么你多了个form标签


好,点不点赞看你了,或者 可以加入 我的 群153181864  前端交流群 ,绝对原创,转载请附上 本微博链接。

你可能感兴趣的:(vue,webpack,ajax,js)