gpt4 book ai didi

go - 如何在返回时使用路由名称作为全局变量

转载 作者:行者123 更新时间:2023-12-03 03:15:45 24 4
gpt4 key购买 nike

我使用 echo-labstack(一个 Go 框架),并尝试在我的 API 中使用 paths.Name 作为全局变量。

e.GET("/", Sources.Login).Name = "LOGIN"

func Login(c echo.Context) error {
return c.Render(http.StatusOK, "login.html", "OK")
}

在我的方法中,我想直接在返回值上使用我的route.Name,这样我就不必像这样硬写我的URL:

func Login(c echo.Context) error {
return c.Render(http.StatusOK, LOGIN, "OK")
}

最佳答案

如果我正确理解这个问题,你可以只使用常量。像这样的事情:

type MyRoute string    
const LOGIN MyRoute = "login"
func (mr MyRoute) Name() string {
return strings.ToUpper(mr)
}

func (mr MyRoute) HTML() string {
return fmt.Sprintf("%s.html", mr)
}
e.GET("/", Sources.Login).Name = LOGIN.Name()

func Login(c echo.Context) error {
return c.Render(http.StatusOK, LOGIN.HTML(), "OK")
}

请考虑此代码尚未经过测试。

关于go - 如何在返回时使用路由名称作为全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57723146/

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