登录
首页 >  Golang >  Go问答

包:使用初始化时命名文件的重要性

来源:stackoverflow

时间:2024-04-26 11:36:39 233浏览 收藏

Golang小白一枚,正在不断学习积累知识,现将学习到的知识记录一下,也是将我的所得分享给大家!而今天这篇文章《包:使用初始化时命名文件的重要性》带大家来了解一下##content_title##,希望对大家的知识积累有所帮助,从而弥补自己的不足,助力实战开发!


问题内容

我在下面的树中编写了一个类似display的结构。

.
├── readme.md
├── db
│   └── db.go
├── go.mod
├── go.sum
├── handler
│   ├── category.go
│   ├── handler.go
│   └── users.go
├── main.go
├── model
│   ├── category.go
│   ├── model.go
│   └── users.go
└── route
    ├── category.go // init() ❌ error to using package vars
    ├── route.go // init() writing package vars
    └── users.go // init() ✅ no error to using package vars

包中除同名文件外的所有文件(route/route.go,handler/handler.go,...)都是自动生成的。对于这些文件来扩展包变量,我使用 golang 的 func init(){} ex:

route/route.go

package route

import (
    "github.com/labstack/echo/v4"
    "github.com/labstack/echo/v4/middleware"
)

var (
    // public routes
    e *echo.echo  = echo.new()
    // restricted routes
    r *echo.group = e.group("/restricted")
)

func init() {
    e.use(middleware.corswithconfig(middleware.corsconfig{
        alloworigins: []string{"http://localhost:3000"},
        allowmethods: []string{echo.get, echo.put, echo.post, echo.delete, echo.options},
        allowheaders: []string{echo.headerauthorization, echo.headercontenttype},
    }))

    e.use(middleware.recover())
    r.use(middleware.jwt([]byte("secret")))
}

route/category.go

package route

import (
    "github.com/username/project/handler"
)

func init() {
    r.get("/category", handler.listcategory)
    r.post("/category/add", handler.createcategory)
    r.get("/category/:id", handler.readcategory)
    r.put("/category/edit/:id", handler.updatecategory)
    r.delete("/category/:id", handler.deletecategory)
}

route/user.go

package route

import (
    "github.com/username/project/handler"
)

func init() {
    r.GET("/users", handler.ListUsers)
    r.POST("/users/add", handler.CreateUser)
    r.PUT("/users/edit/:id", handler.UpdateUser)
    r.DELETE("/users/:id", handler.DeleteUser)
    e.POST("/auth", handler.Login)
    e.POST("/lost", handler.Lost)
    e.POST("/password", handler.Password)
}

正如您已经了解的,category.go init() 在 router.go init() 之前启动,具体描述如下:go 包初始化。

编写了一个漂亮的程序后,可以自动编写像 route/category.go 这样的路由。我意识到要解决这个问题,我必须将 router/router.go 重命名为 router/0router.go (它有效),以便它仍然位于支柱的顶部,但它不是一个好方法。

对这棵树和 golang ini() 的使用有什么建议吗?

谢谢


解决方案


使用变量声明表达式来避免文件名依赖。赋值在引用变量的 init() 函数之前执行。

var (
    // public routes
    e *echo.Echo = newPublic()
    // restricted routes
    r *echo.Group = newRestricted()
)

func newPublic() *echo.Echo {
    e := echo.New()
    e.Use(middleware.CORSWithConfig(middleware.CORSConfig{
        AllowOrigins: []string{"http://localhost:3000"},
        AllowMethods: []string{echo.GET, echo.PUT, echo.POST, echo.DELETE, echo.OPTIONS},
        AllowHeaders: []string{echo.HeaderAuthorization, echo.HeaderContentType},
    }))
    e.Use(middleware.Recover())
}

func newRestricted() *echo.Group {
    r := e.Group("/restricted")
    r.Use(middleware.JWT([]byte("secret")))
    return r
}

以上就是《包:使用初始化时命名文件的重要性》的详细内容,更多关于的资料请关注golang学习网公众号!

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