提交 42fc3954 编写于 作者: M mzabriskie

Fixing issue with FormData not being sent

closes #53
上级 9d31a867
......@@ -9,6 +9,9 @@ var DEFAULT_CONTENT_TYPE = {
module.exports = {
transformRequest: [function (data, headers) {
if(utils.isFormData(data)) {
return data;
}
if (utils.isArrayBuffer(data)) {
return data;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册