使用FormData时报错:TypeError: 'append' called on an object that does not implement interface FormData
解决办法:
在ajax中加入这两句话就行:
processData: false,
contentType: false
2024-02-23 16:51:46
使用FormData时报错:TypeError: 'append' called on an object that does not implement interface FormData
解决办法:
在ajax中加入这两句话就行:
processData: false,
contentType: false