gpt4 book ai didi

jquery - 无法发送json到服务器,出现ajax错误

转载 作者:行者123 更新时间:2023-12-01 07:12:26 25 4
gpt4 key购买 nike

我在我的网站上尝试了此代码,然后在其他网站上,然后通过控制台在 jquery.com 上尝试了此代码:

jQuery.ajax({
url: '/',
type: 'POST',
data: '{"test":"test"}',
contentType: 'application/json; charset=utf-8',
dataType: 'json'
});

$(document).ajaxError(function(e, jqXHR, ajaxSettings, thrownError){
console.log(thrownError);
});

因此控制台会记录以下内容:

SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data

我不明白为什么。看来我的代码中的一切都是正确的。

最佳答案

您传递的是字符串文字而不是对象:

data: { test: 'test' },

关于jquery - 无法发送json到服务器,出现ajax错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24589369/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com