登录
首页 >  Golang >  Go问答

使用标准 http 包显示自定义 404 错误页面

来源:Golang技术栈

时间:2023-04-17 18:14:29 494浏览 收藏

在Golang实战开发的过程中,我们经常会遇到一些这样那样的问题,然后要卡好半天,等问题解决了才发现原来一些细节知识点还是没有掌握好。今天golang学习网就整理分享《使用标准 http 包显示自定义 404 错误页面》,聊聊golang,希望可以帮助到正在努力赚钱的你。

问题内容

假设我们有:

http.HandleFunc("/smth", smthPage)
http.HandleFunc("/", homePage)

当用户尝试错误的 URL 时,他们会看到一个简单的“404 页面未找到”。我怎样才能为这种情况返回自定义页面?

关于 gorilla/mux 的更新

对于那些使用纯 net/http 包的人来说,接受的答案是可以的。

如果你使用 gorilla/mux,你应该使用这样的东西:

func main() {
    r := mux.NewRouter()
    r.NotFoundHandler = http.HandlerFunc(notFound)
}

func notFound(w http.ResponseWriter, r *http.Request)随心所欲地实施。

正确答案

我通常这样做:

package main

import (
    "fmt"
    "net/http"
)

func main() {
    http.HandleFunc("/", homeHandler)
    http.HandleFunc("/smth/", smthHandler)
    http.ListenAndServe(":12345", nil)
}

func homeHandler(w http.ResponseWriter, r *http.Request) {
    if r.URL.Path != "/" {
        errorHandler(w, r, http.StatusNotFound)
        return
    }
    fmt.Fprint(w, "welcome home")
}

func smthHandler(w http.ResponseWriter, r *http.Request) {
    if r.URL.Path != "/smth/" {
        errorHandler(w, r, http.StatusNotFound)
        return
    }
    fmt.Fprint(w, "welcome smth")
}

func errorHandler(w http.ResponseWriter, r *http.Request, status int) {
    w.WriteHeader(status)
    if status == http.StatusNotFound {
        fmt.Fprint(w, "custom 404")
    }
}

在这里,我将代码简化为仅显示自定义 404,但实际上我使用此设置做了更多工作:我使用 处理所有 HTTP 错误errorHandler,在其中记录有用信息并向自己发送电子邮件。

以上就是《使用标准 http 包显示自定义 404 错误页面》的详细内容,更多关于golang的资料请关注golang学习网公众号!

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