我使用应用程序工艺作为前端(在应用程序工艺服务器上),cakephp作为后端(安装在localhost- wamp服务器中)。
以下代码是我使用ajax从应用程序工艺连接到localhost的部分:
var params = {name : "madhan",id: 1};
app.httpRequest("http://client1.localhost/ezfit-be/users/index",
"POST",function(data, error, httpResponse){
debugger;
if (error === false){
//app.setValue("testlabel", data.results[0].formatted_address);
alert(data);
} else {
alert("Cannot locate it");
}
}, params , "json" );
}
}
然而,当我运行它时,它表示无法连接到该地址。我相信我的localhost不允许来自其他域的请求。
我尝试设置虚拟主机(client1.localhost),但它仍然给了我同样的错误
如何设置我的wamp以允许来自其他域的请求?