ajax 设置请求头参数之--contentType

前端之家收集整理的这篇文章主要介绍了ajax 设置请求头参数之--contentType前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$.ajax({
                cache: false,type: "POST",url:"{{ route('admin_add_gift') }}",data:formData,// 你的formid
                async: false,processData: false,dataType: 'json',contentType: false,//jquery不改变之前的 contentType的值
                error: function(request) {
                  alert('添加失败');
                },success: function(data) {
                  if (data.status == 1) {
                    //提交成功
                    $('#dialogBg').hide();
                    $('#dialog').hide();
                    window.location.reload();  //刷新当前界面
                    alert("提交成功");
                  } else if (data.status == 0) {
                    alert("提交失败");
                  } else if (data.status == 2) {
                    //补全资料
                    alert("补齐资料");
                  }
                }
            });

没有设置contentType: false 这个参数

设置了contentType: false这个参数

原文链接:https://www.f2er.com/ajax/160734.html

猜你在找的Ajax相关文章