gpt4 book ai didi

php - 如何在使用 jQuery Ajax 方法时接收和处理来自 Php 脚本的响应

转载 作者:可可西里 更新时间:2023-11-01 07:52:37 24 4
gpt4 key购买 nike

<分区>

如何在使用 jQuery Ajax 方法时接收和处理来自 PHP 脚本的响应?

javascript

$.ajax({
type: 'post',
url: 'show.php',
data: {name: name},
dataType: 'json',
success: function(response) {
//I want my json response back here
}
});

show.php

$hostelName = $_POST['name'];
$sql = //here is the actual sql containing the $hostelname
$query = mysql_query($sql);
$obj = mysql_fetch_object($query);
$sum = $obj->sum;
$tour = $obj->tour;
echo json_encode(
array(
"sum" => $sum,
"tour" => $tour
)
);

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