赞
踩
在vue中适应formdata的坑。 报错代码:
let myFormdata=new Formdata(); myFormdata.append("upfile",files)
修改后代码:
let myFormdata=new window.Formdata(); myFormdata.append("upfile",files)
报错结束,后端接收正常。