我在这个主题上有问题:Access-Control-Allow-Origin。
我阅读了它,发现可以使用 php 获得响应,here
但我不知道如何使该代码适应 javascript,我仍然有同样的问题。
我在javascript中试过这个:
var url ='http://localhost:8080/com.webserver/rest/manage/order?parameter=parameter';
req=Ajax("getResponse.php/?" + url)
if (req.status=200)
alert("hi");
在 php 文件上:
<?php
echo file_get_contents($_GET['url']);
?>
什么都没有发生。我尝试使用ajax,例如:
$.ajax({
url: "http://localhost:8080/com.webserver/rest/manage/order?parameter=parameter",
async: false,
dataType: 'html',
success: function (text) {
alert(text);
}
});
但总是同样的问题......
我在网上看到很多人有同样的问题,但没有人得到回应。我刚刚找到了 2 种方法,使用 chrome 和一个选项,但只是推荐给开发人员并在服务器上添加标头,但我不知道在哪里添加它们。我正在为该本地主机使用 apache tomcat catalina。我有 2 个服务器,网页(在 xampp 中)和休息(在 tomcat 中)