gpt4 book ai didi

javascript - Access-Control-Allow-Origin 不起作用 Google Cloud Functions GCF

转载 作者:IT老高 更新时间:2023-10-28 23:22:51 26 4
gpt4 key购买 nike

我在这里感觉自己像个新手,但我正在尝试从浏览器运行一个简单的 AJAX 请求来访问 GCF,Chrome 正在报告:

XMLHttpRequest cannot load https://us-central1-bustling-opus-830.cloudfunctions.net/Authenticate. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://beast.reachboarding.com.au' is therefore not allowed access.

我有一个名为 Authenticate 的函数(如上所示),它使用了一个名为:

bustling-opus-830.appspot.com

我使用 gsutil 通过以下 JSON 文件设置 CORS:

[{
"origin": ["https://beast.localdev.com.au","*"],
"responseHeader": ["Content-Type"],
"method": ["GET", "HEAD", "DELETE", "OPTIONS"],
"maxAgeSeconds": 3600
}]

使用以下命令:

gsutil cors set cors.json gs://bustling-opus-830.appspot.com/

然后从对应的get命令中得到如下输出:

gsutil cors get gs://bustling-opus-830.appspot.com/

[{"maxAgeSeconds": 3600, "method": ["GET", "HEAD", "DELETE", "OPTIONS"], "origin": ["https://beast.localdev.com.au", "*"], "responseHeader": ["Content-Type"]}]

我使用的是您在创建新函数时提供的默认示例代码,如下所述:

/**
* Responds to any HTTP request that can provide a "message" field in the body.
*
* @param {!Object} req Cloud Function request context.
* @param {!Object} res Cloud Function response context.
*/
exports.helloWorld = function helloWorld(req, res) {
// Example input: {"message": "Hello!"}
if (req.body.message === undefined) {
// This is an error case, as "message" is required.
res.status(200).send('No message defined!');
} else {
// Everything is okay.
console.log(req.body.message);
res.status(200).send(req.body.message);
}
};

还有一个带有以下 Javascript 的简单 HTML:

$.ajax({
url: "https://us-central1-bustling-opus-830.cloudfunctions.net/Authenticate",
type: "POST",
data: {
message: 'Testing'
},
dataType: 'json',
success: function (response) {
console.log(response);
},
error: function (xhr, status) {
console.log(xhr);
}
});

导致错误的原因。

在我的 DEV 控制台中,我可以看到网络请求通过。以下是我得到的 HTTP 响应 header :

cache-control:private
content-encoding:gzip
content-length:27
content-type:text/html; charset=utf-8
date:Wed, 08 Feb 2017 03:45:50 GMT
etag:W/"7-274e639a"
function-execution-id:azc1zqfb1tq8
server:Google Frontend
status:200
vary:Accept-Encoding
x-cloud-trace-context:70e08d634a9644c32530326de0471a64;o=1
x-cloud-trace-context:70e08d634a9644c32530326de0471a64
x-powered-by:Express

我本来希望在响应 header 中看到 Access-Control-Allow-Origin header ,表明它允许 * 但我绝对没有看到它。

但疯狂的是,当我查看 Network 项目并单击 Response 时,我得到:

Testing

这表明所有事情都是平等的,它实际上运行了!

如果之前已经回答过这个问题,我深表歉意,但我已经搜索了许多不同的关键字,但似乎没有任何东西可以解决我的问题。我认为重新审视这个问题(以及一些体面的专业知识)会有所帮助。

提前致谢!

最佳答案

您的前台 (HTTP) Google Cloud Function 需要在对 AJAX 客户端请求的响应中设置适当的 CORS header 。 HTTP Functions的请求和响应参数具有与相应 ExpressJS 对象等效的属性,可用于设置 CORS header 并根据需要响应预检请求。

例如:

exports.Authenticate = function Authenticate (req, res) {
//set JSON content type and CORS headers for the response
res.header('Content-Type','application/json');
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Headers', 'Content-Type');

//respond to CORS preflight requests
if (req.method == 'OPTIONS') {
res.status(204).send('');
}

//continue function ...

};

上面的标题和逻辑应该被修改以反射(reflect)你的服务的特定需求,但希望能帮助你开始。

关于javascript - Access-Control-Allow-Origin 不起作用 Google Cloud Functions GCF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42140247/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com