From a37a960b2967a0ab31d030e05d518e1e04183cda Mon Sep 17 00:00:00 2001 From: Zachary Date: Thu, 21 Jun 2018 10:31:20 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 80a00d5..622d579 100644 --- a/README.md +++ b/README.md @@ -531,7 +531,7 @@ func main() {
-符合类型 +复合类型 复合类型将使用不同的格式输出,格式如下: @@ -541,7 +541,7 @@ func main() { 映   射:map[键1:值1 键2:值2 ...] ``` -指向符合元素的指针:`&{}`, `&[]`, `&map[]` +指向复合元素的指针:`&{}`, `&[]`, `&map[]` 复合类型本身没有动词,动词将应用到复合类型的元素上。 结构体可以使用 "+v" 同时输出字段名。 @@ -579,7 +579,7 @@ break default func interface select case defer go map struct chan else goto package switch const fallthrough if range type -continue for import retrun var +continue for import return var ```
@@ -2047,7 +2047,7 @@ func main() {
结构体指针 -结构体字段使用点号来访问。 +结构体指针使用 & 来访问。 ```go package main From 9b2957a45806c2daf28aef1d7f336c8bdc067a88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=BC=9F=E8=B0=83=E8=B0=83=E2=84=A2?= <398188662@qq.com> Date: Thu, 29 Nov 2018 23:28:42 +0800 Subject: [PATCH 2/5] Add gorm --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 622d579..4597797 100644 --- a/README.md +++ b/README.md @@ -2122,6 +2122,7 @@ func main() {
ORM 以及数据库驱动 +- [gorm](https://github.com/jinzhu/gorm):支持 MySQL、PostgreSQL、SQLite3 以及 SQL Server - [xorm](https://github.com/go-xorm/xorm):支持 MySQL、PostgreSQL、SQLite3 以及 MsSQL - [mgo](http://labix.org/mgo):MongoDB 官方推荐驱动 From 7d9ae7ec4fcb4714a7504104d38788dc542b1bb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=BC=9F=E8=B0=83=E8=B0=83=E2=84=A2?= <398188662@qq.com> Date: Thu, 29 Nov 2018 23:30:48 +0800 Subject: [PATCH 3/5] Add gin. --- README.md | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4597797..579f00c 100644 --- a/README.md +++ b/README.md @@ -2112,9 +2112,10 @@ func main() {
Web 框架 -- [Macaron](https://go-macaron.com/):模块化 Web 框架 -- [Beego](http://beego.me/):重量级 Web 框架 -- [Revel](https://github.com/revel/revel):较早成熟的重量级 Web 框架 +- [gin](https://github.com/gin-gonic/gin): HTTP Web框架,它具有类似Martini的API,具有更好的性能 +- [Macaron](https://go-macaron.com/): 模块化 Web 框架 +- [Beego](http://beego.me/): 重量级 Web 框架 +- [Revel](https://github.com/revel/revel): 较早成熟的重量级 Web 框架 - [Martini](https://github.com/go-martini/martini): 一个强大为了编写模块化 Web 应用而生的 Go 语言框架
@@ -2122,19 +2123,19 @@ func main() {
ORM 以及数据库驱动 -- [gorm](https://github.com/jinzhu/gorm):支持 MySQL、PostgreSQL、SQLite3 以及 SQL Server -- [xorm](https://github.com/go-xorm/xorm):支持 MySQL、PostgreSQL、SQLite3 以及 MsSQL -- [mgo](http://labix.org/mgo):MongoDB 官方推荐驱动 +- [gorm](https://github.com/jinzhu/gorm): 支持 MySQL、PostgreSQL、SQLite3 以及 SQL Server +- [xorm](https://github.com/go-xorm/xorm): 支持 MySQL、PostgreSQL、SQLite3 以及 MsSQL +- [mgo](http://labix.org/mgo): MongoDB 官方推荐驱动
辅助站点 -- [Go Walker](https://gowalker.org):Go 语言在线 API 文档 -- [gobuild.io](http://gobuild.io/):Go 语言在线二进制编译与下载 -- [Rego](http://regoio.herokuapp.com/):Go 语言正则在线测试 -- [gopm.io](https://gopm.io):科学下载第三方包 +- [Go Walker](https://gowalker.org): Go 语言在线 API 文档 +- [gobuild.io](http://gobuild.io/): Go 语言在线二进制编译与下载 +- [Rego](http://regoio.herokuapp.com/): Go 语言正则在线测试 +- [gopm.io](https://gopm.io): 科学下载第三方包
From 7c3976600e88e497fc13d9edab17409d1b72fb21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=BC=9F=E8=B0=83=E8=B0=83=E2=84=A2?= <398188662@qq.com> Date: Mon, 3 Dec 2018 09:29:14 +0800 Subject: [PATCH 4/5] Add Iris. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 579f00c..776b01e 100644 --- a/README.md +++ b/README.md @@ -2112,6 +2112,7 @@ func main() {
Web 框架 +- [Iris](https://github.com/kataras/iris): 一个快速,简单但功能齐全且非常高效的Web框架。 - [gin](https://github.com/gin-gonic/gin): HTTP Web框架,它具有类似Martini的API,具有更好的性能 - [Macaron](https://go-macaron.com/): 模块化 Web 框架 - [Beego](http://beego.me/): 重量级 Web 框架 From 2246f9967585dc856dce7732162c6ede787ace5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=BC=9F=E8=B0=83=E8=B0=83=E2=84=A2?= <398188662@qq.com> Date: Thu, 3 Jan 2019 03:13:17 +0800 Subject: [PATCH 5/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 776b01e..321bf92 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,7 @@ mkdir -p $HOME/gopath brew update && brew upgrade # 更新 Homebrew 的信息 brew install git # 安装 git brew install go # 安装 go +brew upgrade go # 更新 go ```