# goframe-study **Repository Path**: angeltee/goframe-study ## Basic Information - **Project Name**: goframe-study - **Description**: go语言的框架goframe学习.感觉这个框架比beego更好. - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2021-03-31 - **Last Updated**: 2021-03-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README GoFrame Project === 官网: https://goframe.org gitee: https://gitee.com/johng/gf 官方文档: [https://godoc.org/](https://godoc.org/) demo: https://github.com/gogf/gf-demos 更多案例 https://gitee.com/goflyfox/gfstudy.git ## 使用体会 1. goframe感觉要比beego清晰很多. * 一个demo就清晰明了! * 一个router文件就直接搞定所有路由以及子路由的关系! * 一个固定方法名就直接搞定POST,GET等1 * 将路由与处理业务逻辑部分完全分离! 1. goframe是国人开发的,社区很活跃 1. goframe更新很频繁 ## GO语言 1. 不以文件名为限制,以文件夹作为限制,也就是多个文件在同一个包里面.以包来找方法名.跳过了文件的作用,也就是文件可以任意发挥了! 1. https://github.com/aohanhongzhi/awesome-go-cn 1. 文件是基于蛇形命名的,不是驼峰式命名文件。 1. 变量函数等是基于驼峰式命名 1. 基于包的方法调用与模型对象声明与初始化 ### json数据处理 1. [Go 处理 JSON 教程 - 如何创建和解析 JSON 数据](https://bingohuang.com/go-json/) 1. [Go处理json数据](https://blog.csdn.net/qq_36178899/article/details/84869079) ## goframe 1. [Json数据处理](https://goframe.org/net/ghttp/request/json-xml) 1. ## singleton ![]