gpt4 book ai didi

Javascript 跨域 JSON

转载 作者:数据小太阳 更新时间:2023-10-29 03:49:48 25 4
gpt4 key购买 nike

您好,我正在尝试仅使用 JavaScriptHTML 从 URL 读取 json 对象。我正在使用以下代码:

function getJSONP(url, success) {

var ud = '_' + +new Date,
script = document.createElement('script'),
head = document.getElementsByTagName('head')[0]
|| document.documentElement;

window[ud] = function(data) {
head.removeChild(script);
success && success(data);
};

script.src = url.replace('callback=?', 'callback=' + ud);
head.appendChild(script);
}

getJSONP('http://webURl?&callback=?', function(data){
console.log(data);
});

如您所料,我得到的是 Not at same origin as the document, and parent of track element does not have a 'crossorigin' 属性。因此不允许访问 Origin 'null'。

仅供引用,服务器返回 JSON 数据并且没有回调函数。

为您的帮助干杯。

最佳答案

服务器要么需要使用如下 header 启用 CORS:(这里的答案归功于:CORS with php headers)

// Allow from any origin
if (isset($_SERVER['HTTP_ORIGIN'])) {
header("Access-Control-Allow-Origin: {$_SERVER['HTTP_ORIGIN']}");
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Max-Age: 86400'); // cache for 1 day
}

// Access-Control headers are received during OPTIONS requests
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {

if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD']))
header("Access-Control-Allow-Methods: GET, POST, OPTIONS");

if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']))
header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");

exit(0);
}

或者服务器需要像这样输出JSONP:

echo $_GET['callback'] . '(' . json_encode($whatever) . ')';

如果这不在您自己的服务器上,另一种选择是在您自己的服务器上创建一个 PHP 文件,该文件在您需要读取的 url 上执行 filegetcontents(使用不带 cors 的 JSON 数据)和以 JSONP 格式回显相同的数据。然后,您可以在纯 javascript getJSON 函数中使用这个新的 PHP 文件 (url)。

中间没有服务器或者cors或者jsonp是不行的。

关于Javascript 跨域 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32302518/

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