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 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败
  • ¥15 MapReduce实现倒排索引失败
  • ¥15 ZABBIX6.0L连接数据库报错,如何解决?(操作系统-centos)
  • ¥15 找一位技术过硬的游戏pj程序员
  • ¥15 matlab生成电测深三层曲线模型代码