gpt4 book ai didi

javascript - 无法附加以 JSON 形式返回的内容

转载 作者:行者123 更新时间:2023-12-02 20:32:09 24 4
gpt4 key购买 nike

我返回了以下 JSON:

{"gameId":137.0,"memberId":3,"id":97.0,"reviewBody":"Great game! Awesome.","createdAt":"October, 13 2010 18:55:34"}

我尝试使用以下 JavaScript 将其附加到图层,但没有显示任何内容:

$(function(){
$(".review-form").submit(function(){
dataString = $(".review-form").serialize();
$.ajax({
type: "POST",
url: "#URLFor(controller="membros", action="createReview")#",
data: dataString,
dataType: "JSON",
returnFormat: "JSON",
success: function(response) {
$(".review-confirmation").html(response.REVIEWBODY);
$('.review-form').slideToggle('slow', function() { });
}
});
return false; // keeps the normal request from firing
});
});

我尝试过对response.reviewBody 使用大写、小写和驼峰式大小写,但没有显示任何内容。有什么想法我哪里出错了吗?

最佳答案

令人惊讶的是,

dataType: "JSON",

大写不会返回 JSON 数据。

您需要使用

dataType: "json",

关于javascript - 无法附加以 JSON 形式返回的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3928405/

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