关于iris-api我的入门级结构

jkal789 · · 1960 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

#### 入口:main.go ```go app := iris.Default() //启动iris服务 route.InitRouter(app) //进入路由 app.Run(iris.Addr(":8080")), iris.WithoutServerError(iris.ErrServerClosed)) //设置端口号 ``` #### 路由: route.go ```go func InitRouter(app *iris.Application) { g := controllers.NewIamController() //连接控制器层 app.Get("/xx/xx", g.xxx) //根据url调用 app.Post("/xx/xx", g.xxx) } ``` #### controller.go ```go type XController struct { Service service.XService } func NewXController() *XController { return &XController{Service: service.NewXService()} }//连接service层 func (g *XController) XX(c iris.Context) { xx := g.Service.XX(xx)//调用service层 } ``` #### service.go ```go type XService interface { XX(xx string) (xxx bool, xxxx string) YY(yy map[string]string) (yyy string) } type xService struct{} func NewXService() XService { return &xService{} }//建立接口供controller层调用 func (u xService) XX(xx string) (xxx bool, xxxx string) { } ``` controller层常用来接收前端传来的信息,service层常用来放置功能算法,models层则放置和数据库的交互操作。

有疑问加站长微信联系(非本文作者))

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1960 次点击  ∙  1 赞  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传