Google Cloud Function 不返回我使用 Go 设置的 CORS 标头
来源:stackoverflow
时间:2024-04-27 10:06:51 106浏览 收藏
golang学习网今天将给大家带来《Google Cloud Function 不返回我使用 Go 设置的 CORS 标头》,感兴趣的朋友请继续看下去吧!以下内容将会涉及到等等知识点,如果你是正在学习Golang或者已经是大佬级别了,都非常欢迎也希望大家都能给我建议评论哈~希望能帮助到大家!
我意识到存在类似的问题(例如 google cloud functions 启用 cors?),但他们的答案似乎对我不起作用。
google cloud function 具有以下响应代码:
func helloworld(w http.responsewriter, r *http.request) { [...] response := make(map[string]interface{}) w.writeheader(http.statusok) w.header().set("content-type", "application/json") w.header().set("access-control-allow-origin", "*") w.header().set("allow", "get, options") w.header().set("access-control-allow-methods", "get, options") w.header().set("access-control-allow-headers", "*") response["list"] = list if err = json.newencoder(w).encode(response); err != nil { fmt.println(err) } }
通常我认为使用 access-control-allow-origin", "*"
就足够了,但由于它不起作用,所以我也包括了其他的。
当我尝试 curl -v "https://us-central1-my-function.cloudfunctions.net/myfunction"
时,我得到以下响应:
[...] * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * old SSL session ID is stale, removing * Connection state changed (MAX_CONCURRENT_STREAMS == 100)! < HTTP/2 200 < content-type: text/plain; charset=utf-8 < function-execution-id: ivz4zonw37d1 < x-cloud-trace-context: b6929d3ddf88dc102f6f1f069404aeaa;o=1 < date: Wed, 25 Mar 2020 20:00:52 GMT < server: Google Frontend [...]
当我尝试从本地 vuejs 应用程序调用云函数时,出现以下错误:cross-origin request blocked: the same origin policy disallowsread the remote resource at https://us-central1-my- function.cloudfunctions.net/myfunction。 (原因:缺少 cors 标头“access-control-allow-origin”).
解决方案
这是您的云函数应该具有的标准形式。它应该检查预检请求发送的 options 方法并设置 heathers。然后它应该发送主要请求的石南花。
在这里您可以找到更多信息:
// Package http provides a set of HTTP Cloud Functions samples. package http import ( "fmt" "net/http" ) // CORSEnabledFunction is an example of setting CORS headers. // For more information about CORS and CORS preflight requests, see // https://developer.mozilla.org/en-US/docs/Glossary/Preflight_request. func CORSEnabledFunction(w http.ResponseWriter, r *http.Request) { // Set CORS headers for the preflight request if r.Method == http.MethodOptions { w.Header().Set("Access-Control-Allow-Origin", "*") w.Header().Set("Access-Control-Allow-Methods", "POST") w.Header().Set("Access-Control-Allow-Headers", "Content-Type") w.Header().Set("Access-Control-Max-Age", "3600") w.WriteHeader(http.StatusNoContent) return } // Set CORS headers for the main request. w.Header().Set("Access-Control-Allow-Origin", "*") fmt.Fprint(w, "Hello, World!") }
以上就是《Google Cloud Function 不返回我使用 Go 设置的 CORS 标头》的详细内容,更多关于的资料请关注golang学习网公众号!
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
-
357 收藏
-
352 收藏
-
101 收藏
-
440 收藏
-
212 收藏
-
143 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 508次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习