ajax上传图片报错TypeError: 'append' called on an object that does not implement interface Fo

使用FormData时报错:TypeError: 'append' called on an object that does not implement interface FormData

解决办法:
在ajax中加入这两句话就行:

    processData: false,
    contentType: false

原文地址:https://www.cnblogs.com/qianzf/p/11238824.html