摘要: Gin 中使用 base64Captcha 生成图形验证 码以及分布式架构中配置 Captcha https://github.com/mojocn/base64Captcha captcha.mojotv.cn package models import ( "fmt" "github.com/m 阅读全文
posted @ 2021-10-29 13:26 成强 阅读(1285) 评论(0) 推荐(0) 编辑
摘要: Gin 大型企业级 MVC 架构详解 Gin 不是一个 MVC 的框架,所有的代码都可以写在 main.go 中。当我们的项目比较大的时候, 所有代码写在一个文件里面会带来很大问题,比如:没法实现多人协作开发,没法实现模块 化,没法实现代码共用等。为了使我们的项目更易于开发、维护、管理、升级,这个时 阅读全文
posted @ 2021-10-29 09:21 成强 阅读(1371) 评论(0) 推荐(1) 编辑
摘要: Gin 中使用 go-ini 加载.ini 配置文件 Github 地址:https://github.com/go-ini/ini 官方文档:https://ini.unknwon.io/ package main import ( "fmt" "os" "gopkg.in/ini.v1" ) f 阅读全文
posted @ 2021-10-29 09:07 成强 阅读(749) 评论(0) 推荐(1) 编辑