浏览器中的“跨源请求已阻止:同源策略”错误

时间:2014-11-12 01:33:51

标签: javascript rest cors

当我尝试将json文件发送到我的服务器时出现此错误。

在我的服务器端,代码是:

    @POST
    @Path("updatedata")
    @Produces("text/plain")
    @Consumes("application/json")
    public Response UpdateData(String info) {
        Gson gson = new Gson();
        List<Data> list = gson.fromJson(info, new TypeToken<List<Data>>() {
        }.getType());

        int is_success = 0;
        try {
            is_success += trainingdata.updateData(list);
        } catch (SQLException e) {
            e.printStackTrace();
        }
        String returnjson = "{\"raw\":\"" + list.size() + "\",\"success\":\"" + is_success + "\"}";
        return Response.ok().entity(returnjson).header("Access-Control-Allow-Origin", "*").header("Access-Control-Allow-Methods", "POST").build();
    }

我可以通过RESTClient成功更新我的数据 - 一个Chrome插件。

但是当我构建前端并尝试通过jaascript调用API时, Firefox显示:跨源请求被阻止:同源策略.... Chrome显示:XMLHttpRequest无法加载...请求的资源上没有“Access-Control-Allow-Origin”标头。因此,不允许来源“......”访问

我写了这样的javascript:

var json = JSON.stringify(array);

var xhr = new XMLHttpRequest();
xhr.open("POST", "http://myurl:4080/updatedata", true);
xhr.setRequestHeader("Content-Type", "application/json");
xhr.send(json);

xhr.onload = function (e) {
    if (xhr.readyState === 4) {
        if (xhr.status === 200) {
            alert('hello');
        }
    }
};
xhr.onerror = function (e) {
    console.error(xhr.statusText);
};

我的javascript代码有问题吗?

我将后端代码和前端代码部署在同一台机器上。

GET功能成功运作。

@GET
@Produces("application/json")
@Path("/{cat_id}")
public Response getAllDataById(@PathParam("cat_id") String cat_id) {
    ReviewedFormat result = null;
    try {
        result = trainingdata.getAllDataById(cat_id);
        Gson gson = new Gson();
        Type dataListType = new TypeToken<ReviewedFormat>() {
        }.getType();
        String jsonString = gson.toJson(result, dataListType);
        return Response.ok().entity(jsonString).header("Access-Control-Allow-Origin", "*").header("Access-Control-Allow-Methods", "GET").build();

    } catch (SQLException e) {
        logger.warn(e.getMessage());
    }
    return null;
}

前端:

var xhr = new XMLHttpRequest();
xhr.open("GET", "http://URL:4080/mywebservice/v1/trainingdata/" + cat_id, true);

xhr.onload = function (e) {
    if (xhr.readyState === 4) {
        if (xhr.status === 200) {
            //console.log(xhr.responseText);
            var jsoninfo = xhr.responseText;
            var obj = JSON.parse(jsoninfo);
        }
     }
}

5 个答案:

答案 0 :(得分:6)

CORS可防止跨站点攻击发生问题,并通过不依赖其他人的资源(可能会死亡)来强制智能开发。它是大多数服务器和浏览器的默认安全功能。

在Apache中,您可以通过添加标头来禁用CORS,IIS和AppEngine的工作方式类似。

由于您在本地开发,最好的选择是XAMPP / WAMPP加上适当的标题 - 或者只是切换到FireFox。

FireFox不考虑CORS下的本地文件,而大多数浏览器都这样做。

Apache Fix

添加标题 - &gt;

Header set Access-Control-Allow-Origin "*"

重置服务器 - &gt;

apachectl -t
  • sudo service apache2 reload

IIS修复:

修改根目录中的web.config(类似于HTAccess)

<?xml version="1.0" encoding="utf-8"?>
<configuration>
 <system.webServer>
   <httpProtocol>
     <customHeaders>
       <add name="Access-Control-Allow-Origin" value="*" />
     </customHeaders>
   </httpProtocol>
 </system.webServer>
</configuration>

App Engine

Python的标头方法:self.response.headers.add_header()

class CORSEnabledHandler(webapp.RequestHandler):
  def get(self):
    self.response.headers.add_header("Access-Control-Allow-Origin", "*")
    self.response.headers['Content-Type'] = 'text/csv'
    self.response.out.write(self.dump_csv())

For Java :resp.addHeader()

public void doGet(HttpServletRequest req, HttpServletResponse resp) {
  resp.addHeader("Access-Control-Allow-Origin", "*");
  resp.addHeader("Content-Type", "text/csv");
  resp.getWriter().append(csvString);
}

For Go :w .Header()。添加()

func doGet(w http.ResponseWriter, r *http.Request) {
  w.Header().Add("Access-Control-Allow-Origin", "*")
  w.Header().Add("Content-Type", "text/csv")
  fmt.Fprintf(w, csvData)
}
如果您对此感兴趣,可以通过JSONP绕过CORS问题:http://en.wikipedia.org/wiki/JSONP

答案 1 :(得分:5)

这是在javascript中发出跨域请求导致的问题。出于安全原因,浏览器会阻止此操作

在javascript中,默认情况下您无法向其他域(包括不同的端口)发出请求。

如果您需要向其他域发送请求,您可以选择启用CORS或使用反向代理。

答案 2 :(得分:0)

听起来您可以控制您发布的远程资源。如果是这种情况,您的远程资源需要具有以下标头:

Access-Control-Allow-Origin: http://yourrequestingurl.com

此处有更多信息(看起来有人问过像你这样的问题):Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at

答案 3 :(得分:0)

感谢@ TGH的提示,我最终通过添加网络代理来解决问题。

参考Using a Web Proxy,我创建一个proxy.php文件,它接收Javascript的xmlHttpRequest,获取postdata并调用Web服务API。

<?php

$method = isset($_POST['method']) ? $_POST['method'] : 'POST';
$postData = file_get_contents('php://input');
$url = $envArray['url'] . ':' . $envArray['port'] . '/mywebservice/v1/trainingdata/updatedata';

echo curl($url, $postData, $method);
}

function curl($url = '', $params = '', $method = 'POST'){
    if (empty($url)) {
        error_log('Curl URL is empty.');
        return;
    }
    $envArray = Settings::getEnvAry();

    $ch = curl_init(); 
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);                                                                     
    curl_setopt($ch, CURLOPT_POSTFIELDS, html_entity_decode($params, ENT_QUOTES));
    curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                                                          
            'Content-Type: application/json',                                                                                
            'Content-Length: ' . strlen($params)
        )                                                                       
    );
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                      

    $response = curl_exec($ch);
    $http_status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);

    $rs = array('status' => $http_status, 'response' => $response);

    return json_encode($rs);
}
?>

在前端,我调用proxy.php

 var xhr = new XMLHttpRequest();
    xhr.open("POST", "proxy.php", true);
    xhr.setRequestHeader("Content-Type", "application/json");
    xhr.send(json);

我认为将项目部署到远程机箱上更好,而不是修改Apache配置。

答案 4 :(得分:0)

您可以在Nginx配置中以及其他类似的Web服务器中添加标头

示例

add_header Access-Control-Allow-Origin *;