gpt4 book ai didi

javascript - $.get jquery 函数返回完整的 html 页面而不是数据中的 json

转载 作者:行者123 更新时间:2023-11-28 06:12:32 25 4
gpt4 key购买 nike

我正在开发一个网络应用程序,我使用 php 作为服务器端语言,它返回 JSON 数据,这里是返回 JSON 数据的 PHP 脚本:

<?php
require_once "connection.php";

if (isset($_GET['take'])) {

$res = $conn->query('select * from pas where service=1');

}

if ($res->num_rows > 0) {
$arr = array();
while ($row = $res->fetch_assoc()) {
array_push($arr, $row);
}
header("Content-type: application/json");
echo json_encode($arr);
}

javascripte 代码是:

$.get('../controllers/sap.php?take=1', function(data) {
console.log(data); //printing the result here
console.log(data);
});

虽然昨天还可以,但是返回的结果是那个PHP页面....

the response

最佳答案

我发现了问题,我在与 wamp 服务器不同的端口上从 intelliJDea IDE 运行应用程序,并且 php 无法在该端口上工作,但是当我从 wamp 服务器运行应用程序时,它可以工作,因为 php 正在工作,那就是解决方案永远不要从任何 ID 运行与 php 相关的应用程序,这就是今天的教训:)。

关于javascript - $.get jquery 函数返回完整的 html 页面而不是数据中的 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36245466/

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