TypeError: 'append' called on an object that does not implement interface FormData 解决方法(示例代码
Posted no-npe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeError: 'append' called on an object that does not implement interface FormData 解决方法(示例代码相关的知识,希望对你有一定的参考价值。
使用ajax提交form表单时,$("formId").serialize()不能提交type="file"类型的input,这个时候可以选择使用FormData,使用方法如下
var dataForm = new FormData(document.getElementById("queryForm")); $.ajax({ processData: false,//这个必须有,不然会报错 contentType: false,//这个必须有,不然会报错 type: "POST", url:"/trail/shopdeepupload", data:dataForm, async: false, dataType:"json" , success: function(data) { if(data=="false"){ showTipPanel("上传失败,请重试!"); } if(data=="true"){ showTipPanel("上传成功!"); setInterval(retFun(),1000); } } });
以上是关于TypeError: 'append' called on an object that does not implement interface FormData 解决方法(示例代码的主要内容,如果未能解决你的问题,请参考以下文章
list去重,TypeError: unhashable type: 'list'
TypeError:只有一个元素的整数数组可以转换为索引 3
python TypeError: 'builtin_function_or_method' object is not iterable keys
python Python:ClassName(list),isinstance(),TypeError,ValueError,.append()
TypeError: append() 没有关键字参数 - 用于多处理的 Python 代码以获取图像的分形维度
TypeError: to_append 应该是 Series 或 Series 的列表/元组,得到 DataFrame