dongtong5242 2016-08-28 09:18
浏览 67
已采纳

Golang MVC结构

I searched many sites and I saw a lot of sources in GitHub and I haven't found a solution.

I created an MVC website pattern in Golang:

  • app
    • controllers
    • models
    • lib (All the features class/functions)
    • middleware
    • router.go
  • resources
    • views
  • main.go

My question is: How to inject config to have everywhere settings and other implemented class that will always be needed (like load speed single page).

One more thing(additionally): Can anyone recommend me a good material or transcribe MVC tricks idea works MVC with Golang (General useful information).

  • 写回答

1条回答 默认 最新

  • dougutuo9879 2016-08-28 14:25
    关注

    You can have one file called for example MainController where you can make functions for accessing database, sessions, config files and so on. All you have to do really from there is to say something like this for example (inherit stuff from some other controller):

    //MyController.go
    type App struct {
        MainController
    }
    
    func (c Application) MyControllerFunc() returnTypeHere(http.Response for example) {
    
        //c.getDatabaseName is function from MainController that reads information from some plain text file or json file or similar
        someInfoFromConfigFile = c.getDatabaseName()
        var str []string
        str = append(str,  someInfoFromConfigFile)
    
        //RenderJson is function that render http response as json (Content type plain/json)
        return c.RenderJson(str)
    }
    

    But if you need mvc I suggest that you use some framework (Revel for example). I am using it all the time. It gives you that basic mvc functionality if you like and all other stuff is really up to you. You keep you business logic in some helpers, models in models file etc.

    You can check Revel main controller structure here: https://github.com/revel/revel/blob/master/controller.go

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?
  • ¥50 需求一个up主付费课程
  • ¥20 模型在y分布之外的数据上预测能力不好如何解决