我正在使用Angular 1.2.3并使用$ resource使用以下代码从服务器获取数据。
$resource("http://11.11.11.11/url/index.php",
{'testService':{method:"GET",url:'http://11.11.11.11/url/index.php',isArray:true}})
然后用
调用它 var theObjToSend = {
method:method_name,
params:
{
param1:value,
param2:value
}
};
new user_resources({data: theObjToSend}).testService();
但它给了我以下错误: No' Access-Control-Allow-Origin'标头出现在请求的资源上。因此不允许Origin localhost访问。
如何解决?