gpt4 book ai didi

jquery - 如何使用 AJAX Jquery 获取响应中传回的数据?

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

这是我的帖子:

$("#checkin-button").click(function() { 
var mid = $("input#mid").val();
var dataString = 'mid='+mid;
$.ajax({
type: "POST",
url: "/game-checkin",
data: dataString,
success: function() {
$('#checkin-form').html("<div id='message'></div>");
$('#message').html("<h2>You are checked in!</h2>");
}
});
return false;
});

我正在发回一个 JSON 字符串,并希望在我的 Django 模板中使用它。如何捕获该响应以在模板中显示?

最佳答案

来自API

success(data, textStatus, XMLHttpRequest)Function

A function to be called if the request succeeds. The function gets passed three arguments: The data returned from the server, formatted according to the 'dataType' parameter; a string describing the status; and the XMLHttpRequest object (available as of jQuery 1.4). This is an Ajax Event.

我想你必须使用parseJSON()来转换它。

关于jquery - 如何使用 AJAX Jquery 获取响应中传回的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4752742/

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