vue formdata is not defined解决办法
在vue中适应formdata的坑。报错代码:let myFormdata=new Formdata();myFormdata.append("upfile",files)修改后代码:let myFormdata=new window.Formdata();myFormdata.append("upfile",files)报错结束,后端接收正常。
·
在vue中适应formdata的坑。
报错代码:
let myFormdata=new Formdata();
myFormdata.append("upfile",files)
修改后代码:
let myFormdata=new window.Formdata();
myFormdata.append("upfile",files)
报错结束,后端接收正常。
更多推荐
已为社区贡献1条内容
所有评论(0)