2

我正在尝试使用 jQuery访问Google 协议 RPC API ,如下所示:

jQuery.ajax({
    url: some_url,
    type: "POST",
    data       : some_params,
    contentType: "application/json; charset=utf-8",
    dataType   : "json",
    success    : function (data) {
            console.log(data);
        },
    error      : function (xhr, status, errorThrown) {
        console.log(xhr);
    }
});

但我只收到以下错误消息:

XMLHttpRequest cannot load https://*****. Response for preflight has invalid HTTP status code 400 

如何OPTIONS在 ProtoRPC 中返回不再出现此错误的方法?

4

0 回答 0