在Golang中使用http POST预检问题

时间:2015-07-14 16:36:39

标签: http go http-headers cors preflight

我正在使用mux包并拥有此代码:

func saveConfig(w http.ResponseWriter, r *http.Request) {
    if origin := r.Header.Get("Origin"); origin != "" {
        w.Header().Set("Access-Control-Allow-Origin", origin)
        fmt.Println("Origin: " + origin)
        w.Header().Set("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE")
        w.Header().Set("Access-Control-Allow-Headers", "Accept, Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization")
    }
    // Stop here if its Preflighted OPTIONS request
    if r.Method == "OPTIONS" {
        return
    }

    body, err := ioutil.ReadAll(io.LimitReader(r.Body, 1048576))
    if err != nil {
        fmt.Println("Error: %s\n", err)
        w.WriteHeader(http.StatusInternalServerError)
        return
    }

    fmt.Println("JSON body:" + string(body))
    if err := r.Body.Close(); err != nil {
        panic(err)
    }

    w.WriteHeader(http.StatusCreated)
}

它在IE上工作正常,但是Chrome预检正在发送一个OPTIONS方法,我得到了404响应。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

代码注册POST,但不注册OPTIONS。一种方法是将代码更改为以下内容:

func NewRouter() *mux.Router { 
    router := mux.NewRouter().StrictSlash(true) 
    for _, route := range routes { 
        var handler http.Handler 
        handler = route.HandlerFunc
        handler = commonlibrary.Logger(handler, route.Name) 
        return router.Methods(route.Method, "OPTIONS").Path(route.Pattern).Name(route.Name).Handler(handler)
 }

这会将OPTIONS添加到所有处理程序。另一种方法是将路由方法字段更改为Methods []string,并将路由器创建为:

return router.Methods(route.Methods..., "OPTIONS").Path(route.Pattern).Name(route.Name).Handler(handler)

这将允许您将OPTIONS添加到处理程序的子集。

另一种方法是为OPTIONS注册一个单独的处理程序:

 Route{"saveConfig", "OPTIONS", "/saveConfig", preflight}