登录
首页 >  Golang >  Go问答

Golang http:多个响应。WriteHeader 调用

来源:Golang技术栈

时间:2023-04-12 22:06:05 318浏览 收藏

golang学习网今天将给大家带来《Golang http:多个响应。WriteHeader 调用》,感兴趣的朋友请继续看下去吧!以下内容将会涉及到golang等等知识点,如果你是正在学习Golang或者已经是大佬级别了,都非常欢迎也希望大家都能给我建议评论哈~希望能帮助到大家!

问题内容

所以我目前正在为我的 Go web 应用程序编写登录和注册功能,我正在尝试实现一个功能,如果你没有填写必填的表单字段“用户名”“密码”,它会给你一个http.Error和然后我试图做到这一点,http.Redirect但在发生重定向时出现此错误。http: multiple response.WriteHeader calls这是我的代码..

//Check form submission
var u user
if req.Method == http.MethodPost {
    un := req.FormValue("username")
    p := req.FormValue("password")


    //Checking to see if user filled out required fields.
    if un == ""{
        http.Error(w, "Please fill out required fields, you will be redirected shortly.", http.StatusForbidden)
        time.Sleep(3000 * time.Millisecond)
        //http.Redirect(w, req, "/" http.StatusSeeOther)
        return

    }else if p == "" {
        http.Error(w, "Please fill out required fields, you will be redirected shortly.", http.StatusForbidden)
        time.Sleep(3000 * time.Millisecond)
        //http.Redirect(w, req, "/", http.StatusSeeOther)
        return
    }

    c.Value = un
    u = user{un, p}

    dbUsers[c.Value] = u
    http.Redirect(w, req, "/login", http.StatusSeeOther)

    log.Println(dbUsers)
    return
}

我确实知道这是因为 if/else 语句中的多个 http 调用,但我不能完全想出一个替代方案。任何帮助将不胜感激!

正确答案

您不能对同一个请求发送多个响应(首先是验证错误(403 但 400 会更好),然后是重定向(301,...))。

您可以在延迟后使用元标记或 javascript 在客户端重定向或直接使用 http 重定向,例如

到这里,我们也就讲完了《Golang http:多个响应。WriteHeader 调用》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于golang的知识点!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表