我正在尝试通过 php 代理连接到一个站点(这个:https ://raw.github.com/cowboy/php-simple-proxy/master/ba-simple-proxy.php ),这是 JavaScript对响应执行某些操作的函数:
编辑:代码现在看起来像这样。还是没有雪茄。
function exista(word) {
alert(word);
var proxy = 'ba-simple-proxy.php?url=';
var uri = "http://api.wordreference.com/0.8/ff175/json/roen/" + word;
uri = encodeURIComponent(uri);
alert(proxy + uri);
var cuvantulexista = 1;
jQuery.ajax({
"async": false,
"url": proxy + uri,
"dataType": 'json',
"method": "GET",
"success": function (data) {
alert("HERE!");
if (data.Error || data.Response)
cuvantulexista = 0;
}
});
return cuvantulexista;
}
php 文件与包含上述函数的 js 文件位于同一文件夹中,并且位于包含 html 文件的 public 文件夹中。
问题是我没有得到任何回应,我真的不知道为什么。
我还在 html 中包含了 php,如下所示:
<?php
include("js/ba-simple-proxy.php");
?>
我很抱歉我的极端菜鸟,但这是我第一次使用 php 和跨域通信。谢谢你。:)
编辑:如果有帮助,该页面不会托管在域上。
Edit2:所以,我在没有 --disable-web-security 的情况下打开了 Google Chrome,我再次收到此错误:
XMLHttpRequest cannot load file:///home/bogdan/Scrabble-Online/public/ba-simple-proxy.php?url=http%3A%2F%2Fapi.wordreference.com%2F0.8%2Fff175%2Fjson%2Froen%2FRHE. Origin null is not allowed by Access-Control-Allow-Origin.
但是,如果我在 localhost 上启动它,它不会显示该消息。它只是不连接。我现在很困惑。