发送json时jQuery ajax POST请求错误

时间:2019-10-18 02:07:37

标签: javascript jquery json ajax http-post

我正在尝试发送POST请求,但返回错误XML读取错误:格式错误 我不知道为什么会收到此错误,我正在尝试发送格式为json的邮件。

这是代码

$("#dataForm").submit(function(event){
    event.preventDefault();
        var dataUser = JSON.stringify({
        nombre: $nombre.val(),
        apellido: $apellido.val(),
        edad: $edad.val(),
        direccion: $direccion.val()
    });

    $.ajax({
        type: "POST",
        url: apiURL,
        data: dataUser,
        contentType: 'application/json',
        dataType: "json",
        success: function(resp)
        {
            $("#loadContent").trigger('click');
        }
    });
});

我已经尝试过了,但是仍然出现错误



    $.ajax({
        type: "POST",
        url: apiURL,
        data: dataUser,
        headers: { 
            Accept : "application/json; charset=utf-8", // <-----This header
        },
        contentType: 'application/json',
        dataType: "json",
        success: function(resp)
        {
            $("#loadContent").trigger('click');
        }
    });

0 个答案:

没有答案