gpt4 book ai didi

Golang gorilla mux 未找到处理程序无法正常工作

转载 作者:数据小太阳 更新时间:2023-10-29 03:27:49 25 4
gpt4 key购买 nike

我正在编写一个 Web 服务器,并且我有 Not Found Handler 函数。登录、注册、查看页面等所有 Handle 功能均正常运行。我也有这样一行:router.NotFoundHandler = http.HandlerFunc(Handlers.NotFoundHandler)处理程序是我的包,包括下一个代码:

func NotFoundHandler(w http.ResponseWriter, r *http.Request) {
//title has to be 404.html
title := config.Page404
title = config.WebAppex + title

fmt.Println("title: " + title)

/*HERE IS QUESTION LINE*/
r = http.NewRequest("GET", config.Page404, nil)

fmt.Println(r.URL.Path)

logger.Info("Sending... ", title)

//load page
p, err := loadPage(title)
if err != nil {
logger.Error("ERROR : ", err.Error())
p, _ := loadPage(config.Page404)
fmt.Fprintf(w, "%s", p.body) //wired way to send HTML page
return //just return because of printing dry p.body
}

//serve it
http.ServeFile(w, r, p.dir)
logger.Info(p.dir, " has been sent")
}

所以问题是:如果我尝试转到 localhost:8080/nothing,那么我会得到漂亮的 Page404但是,如果我转到 localhost:8080/nothing/nothing 或 localhost:8080/nothing/nothing/nothing 等,我会得到没有任何 CSS 的干 404.html。所以我认为问题是请求,所以我用“/404.html”(它是config.Page404)的方式创建新的,但没有任何改变。我阅读了有关 gorilla mux Subrouter 的信息,它可能有助于仅排除 localhost:8080/nothing,但我需要所有情况。那么有什么方法可以排除所有不存在的页面吗?

UPD:我的 loadPage 函数:

func loadPage(title string) (*page, error) {
logger.Info("Trying to load", title)
//writing from title to body
body, err := ioutil.ReadFile(title)
if err != nil {
return nil, err
}

return &page{dir: config.HOMEDIR + title, body: body}, nil
}

type page struct {
dir string
body []byte
}

谢谢!

最佳答案

您可能正在使用相对 CSS 样式表路径提供 404 页面,这在从 /nothing/nothing/nothing 这样的嵌套页面提供时显然会失败。 .

要么使用 <base>标记以在任何地方获得绝对链接,或将您的请求重定向到所需页面。

关于Golang gorilla mux 未找到处理程序无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35069800/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com