gpt4 book ai didi

jquery - Jsonp/Ajax 返回 - 语法错误 : invalid label

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

我的代码如下所示..不确定问题是什么..

<script type="text/javascript"src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>

<script type="text/javascript">
jQuery.getJSON("http://dev9.edisbest.com/json.php?symbol=IBM&callback=?",
function(data) {
alert("Symbol: " + data.symbol + ", Price: " + data.price);
});
</script>

我的 JSON.PHP 页面代码如下

<?
header("Content-Type: application/json");
print json_encode(array("symbol" => "IBM", "price" => 91.42));
?>

最佳答案

看起来从 dev9.edisbest.com 服务器返回的 JSON 字符串无效。

现已返回:

{symbol: 'IBM', price: 91.42}

这是无效的。考虑在 PHP 后端添加以下几行:

<?php
$json = json_encode(array(
"symbol" => "IBM",
"price" => 91.42
));

header("Content-Type: application/json");
print $_GET['callback'] . "(" . $json . ")";
?>

关于jquery - Jsonp/Ajax 返回 - 语法错误 : invalid label,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13473259/

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