如何使用 Gorilla 处理 DELETE 调用的预检请求?

Posted

技术标签:

【中文标题】如何使用 Gorilla 处理 DELETE 调用的预检请求?【英文标题】:How to handle Preflight requests for DELETE calls with Gorilla? 【发布时间】:2021-07-26 03:47:52 【问题描述】:

我用Gorilla Web Toolkit 编写了一个简单的API,通过它的handlers 处理CORS 答案:

r := mux.NewRouter()
r.HandleFunc("/api/note", readHandler).Methods("GET")
r.HandleFunc("/api/note", writeHandler).Methods("POST")
r.HandleFunc("/api/note", deleteHandler).Methods("DELETE")
r.HandleFunc("/api/note", optionsHandler).Methods("OPTIONS")

optionsHandler 是

func optionsHandler(_ http.ResponseWriter, _ *http.Request) 
    return

我的理由是 Preflight 调用将使用 OPTIONS,但它唯一感兴趣的是相关的 CORS 标头。

GETPOST 工作正常,javascript fetch() 调用通过正确的标题。

DELETE 但是在 Preflight 调用中失败:Chrome DevTools 声明 DELETE + Preflight 调用失败并显示 CORS error,下一行是 Preflight OPTIONS 调用失败并显示 405(“方法不允许”)

为什么在处理方法时会出现此错误?以及如何解决?

【问题讨论】:

***.com/questions/40985920/… - 您确定为GETPOST 发送预检吗? @LarsChristianJensen:是的(我检查了标头,调用来自 JS)。我发现了问题并发布了答案。 【参考方案1】:

我通过更新CORS() 调用解决了这个问题:

methods := handlers.AllowedMethods([]string"OPTIONS", "DELETE", "GET", "HEAD", "POST", "PUT", "PATCH")
origins := handlers.AllowedOrigins([]string"*")
headers := handlers.AllowedHeaders([]string"Content-Type")
log.Fatal(http.ListenAndServe("127.0.0.42:80", handlers.CORS(methods, origins, headers)(r)))

我认为(但我不确定)实际上修复了调用的是 headers 条目。

【讨论】:

以上是关于如何使用 Gorilla 处理 DELETE 调用的预检请求?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Gorilla mux 路由中获取 OR 模式

Gorilla Mux 处理 curl 请求

Go 每日一库之 gorilla/handlers

如何在 gorilla/mux 包中初始化 HandleFunc 中的变量

中间件中的 gorilla/mux 下一个处理程序是 nil

如何使用 Gorilla 指定 WS ping 的频率