SyntaxError: JSON.parse: 预料之外的字符在JSON的第1行第2列

14 浏览
0 Comments

SyntaxError: JSON.parse: 预料之外的字符在JSON的第1行第2列

我需要将这个div追加到另一个div中,但是它给了我这个错误:

SyntaxError: JSON.parse: JSON数据的第1行第2列出现意外字符

这是我的javascript代码:

var str = {'message': message,'text': text};
$.ajax({
    type: "POST",
    url: "api/reply",
    data: str,
    dataType: "json",
    cache: false,
    success: function(response)
    {
        var respons = jQuery.parseJSON(response);
        var type = respons.status
        if (type == 'success') {
            $("").html(respons.message).appendTo("#messages");
        }
        else
        {
            toastr.error(respons.message)
        }
    }
})

0