-2

我在 Chrome 中收到以下错误:

XMLHttpRequest 无法加载“http://localhost/getuser.php?q=1&sid=0.03709745453670621”。Access-Control-Allow-Origin 不允许 Origin null。

当我单击链接“ http://localhost/getuser.php?q=1&sid=0.03709745453670621 ”时。它显示了正确的数据,但我不明白为什么我不断收到此错误,我无法弄清楚如何 --allow-file-access-from-files。

当我在 Firefox 中运行它时,我没有收到任何错误,但也没有显示数据。在 Javascript 代码中,alert(xmlHttp.responseText)没有显示任何内容,这是因为 responseText 包含空字符串。为什么它不包含数组数据?

4

1 回答 1

0

由于同源政策,问题出现了。添加header('Access-Control-Allow-Origin: *') ; 在我的 php 文件之上帮助解决了这个问题。

于 2012-10-22T05:39:55.670 回答