gpt4 book ai didi

php - 是否可以从 Ajax 调用外部 PHP 脚本?

转载 作者:行者123 更新时间:2023-11-29 17:31:22 25 4
gpt4 key购买 nike

我正在尝试像这样使用 Ajax 调用外部 PHP 脚本:

$(function() {
$.ajax({'url': 'http://stokes.chop.edu/web/zscore/result.php',
'type': 'POST',
'success': function(response, textStatus, XMLHttpRequest) {
alert('[' + response + ']');
},
'error': function(XMLHttpRequest, textStatus, errorThrown) {
alert('Error');
}
});
});

结果是:[](即调用了success函数!),但我在 FireFox 的 HTTPFOX 插件中看到以下错误:

加载内容时出错 (NS_ERROR_DOCUMENT_NOT_CACHED)

我的代码有什么问题?

最佳答案

您不能从与调用 ajax 请求的页面不具有相同域名的页面加载内容。这是一个众所周知的安全功能,称为同源策略。

关于php - 是否可以从 Ajax 调用外部 PHP 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3640824/

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