在此示例中,我们将通过用户界面表单读取-写入-更新JSON文件中的JSON数据,获取特定记录的数据并删除特定记录的数据。

net/http标准库包提供了多种创建HTTP服务器的方法,并附带了一个基本的路由器。此处使用的net/http包用于向服务器发出请求并响应请求。

 

项目目录结构:

 

 

示例代码:main.go

导入net/http包。包http提供HTTP客户端和服务器实现。在main函数中,使用HandleFunc方法创建路由 /。HandleFunc为给定模式注册处理程序函数。HandleFunc阻止我们在执行处理程序之前和之后使用中间件执行任务。ListenAndServe使用给定的地址和处理程序启动HTTP服务器。

package main

import (
	handlers "./handlers"
	"net/http"
)

func main() {
	http.HandleFunc("/addnewuser/", handlers.AddNewUserFunc)
	http.HandleFunc("/notsucceded", handlers.NotSucceded)

	http.HandleFunc("/deleted", handlers.DeletedFunc)
	http.HandleFunc("/deleteuser/deleted", handlers.DeleteUserFunc)
	http.HandleFunc("/deleteuser/", handlers.DeleteUserServe)
	http.HandleFunc("/deleteuser/notsuccededdelete", handlers.NotSuccededDelete)

	http.HandleFunc("/", handlers.IndexFunc)

	http.HandleFunc("/showuser/show", handlers.ShowUserFunc)
	http.HandleFunc("/showuser/", handlers.ShowUser)
	http.HandleFunc("/showuser/notsuccededshow/", handlers.NotSuccededShow)

	http.ListenAndServe(":8080", nil)
}

 

示例代码:list.json

[
 {
  "id": 1,
  "firstName": "Mariya",
  "lastName": "Ivanova",
  "balance": 300
 },
 {
  "id": 2,
  "firstName": "EKatina",
  "lastName": "Milevskaya",
  "balance": 5000
 },
 {
  "id": 3,
  "firstName": "Vasek",
  "lastName": "Zalupickiy",
  "balance": 2000
 }
]

 

示例代码:handlers\handlers.go

package handlers

import (
	model "../model"
	"encoding/json"
	"fmt"
	"html/template"
	"io/ioutil"
	"net/http"
	"os"
	"regexp"
	"strconv"
)

//function to check correct user adding input (regular expression and non-empty field input)
func checkFormValue(w http.ResponseWriter, r *http.Request, forms ...string) (res bool, errStr string) {
	for _, form := range forms {
		m, _ := regexp.MatchString("^[a-zA-Z]+$", r.FormValue(form))
		if r.FormValue(form) == "" {
			return false, "All forms must be completed"
		}
		if m == false {
			return false, "Use only english letters if firstname,lastname forms"
		}

	}
	return true, ""
}

func ShowUser(w http.ResponseWriter, r *http.Request) {
	http.ServeFile(w, r, "templates/showUser.html")
}

func NotSuccededShow(w http.ResponseWriter, r *http.Request) {
	http.ServeFile(w, r, "templates/notSuccededShow.html")

}

//handler to show user with id input
func ShowUserFunc(w http.ResponseWriter, r *http.Request) {
	if r.Method == "GET" {
		t, _ := template.ParseFiles("templates/showUserPage.html")
		t.Execute(w, nil)

	} else {

		id, err := strconv.Atoi(r.FormValue("id"))
		checkError(err)
		var alUsrs model.AllUsers
		file, err := os.OpenFile("list.json", os.O_RDONLY, 0666)
		checkError(err)
		b, err := ioutil.ReadAll(file)
		checkError(err)
		json.Unmarshal(b, &alUsrs.Users)

		var allID []int
		for _, usr := range alUsrs.Users {
			allID = append(allID, usr.Id)
		}
		for _, usr := range alUsrs.Users {
			if model.IsValueInSlice(allID, id) != true {
				http.Redirect(w, r, "/showuser/notsuccededshow/", 302)
				return
			}
			if usr.Id != id {
				continue
			} else {
				t, err := template.ParseFiles("templates/showUserPage.html")
				checkError(err)
				t.Execute(w, usr)
			}

		}
	}
}

//function to handle page with successful deletion
func DeletedFunc(w http.ResponseWriter, r *http.Request) {
	http.ServeFile(w, r, "templates/deleted.html")
}

//serving file with error (add function:empty field input or uncorrect input)
func NotSucceded(w http.ResponseWriter, r *http.Request) {
	http.ServeFile(w, r, "templates/notSucceded.html")
}

//function,which serve html file,when deleting was not succesful(id input is not correct)
func NotSuccededDelete(w http.ResponseWriter, r *http.Request) {
	http.ServeFile(w, r, "templates/notSuccededDelete.html")
}

//function,which serve page with delete information input
func DeleteUserServe(w http.ResponseWriter, r *http.Request) {
	http.ServeFile(w, r, "templates/deleteUser.html")

}

//function to delete user
func DeleteUserFunc(w http.ResponseWriter, r *http.Request) {
	if r.Method == "GET" {
		t, _ := template.ParseFiles("templates/deleteUser.html")
		t.Execute(w, nil)
	} else {
		r.ParseForm()
		id, err := strconv.Atoi(r.FormValue("id"))
		checkError(err)

		//open file with users
		file, err := os.OpenFile("list.json", os.O_RDWR|os.O_APPEND, 0666)
		defer file.Close()

		//read file and unmarshall json to []users
		b, err := ioutil.ReadAll(file)
		var alUsrs model.AllUsers
		err = json.Unmarshal(b, &alUsrs.Users)
		checkError(err)

		var allID []int
		for _, usr := range alUsrs.Users {
			allID = append(allID, usr.Id)
		}
		for i, usr := range alUsrs.Users {
			if model.IsValueInSlice(allID, id) != true {
				http.Redirect(w, r, "/deleteuser/notsuccededdelete", 302)
				return
			}
			if usr.Id != id {
				continue
			} else {
				alUsrs.Users = append(alUsrs.Users[:i], alUsrs.Users[i+1:]...)
			}

		}
		newUserBytes, err := json.MarshalIndent(&alUsrs.Users, "", " ")
		checkError(err)
		ioutil.WriteFile("list.json", newUserBytes, 0666)
		http.Redirect(w, r, "/deleted", 301)
	}
}

func checkError(err error) {
	if err != nil {
		fmt.Println(err)
	}
}

//function to add user
func AddNewUserFunc(w http.ResponseWriter, r *http.Request) {

	//creating new instance and checking method
	newUser := &model.User{}
	if r.Method == "GET" {
		t, _ := template.ParseFiles("templates/addNewUser.html")
		t.Execute(w, nil)

	} else {
		resBool, errStr := checkFormValue(w, r, "firstname", "lastname")
		if resBool == false {
			t, err := template.ParseFiles("templates/notSucceded.html")
			checkError(err)
			t.Execute(w, errStr)

			return
		}
		newUser.FirstName = r.FormValue("firstname")
		newUser.LastName = r.FormValue("lastname")
		var err error
		newUser.Balance, err = strconv.ParseFloat(r.FormValue("balance"), 64)
		checkError(err)

		//open file
		file, err := os.OpenFile("list.json", os.O_RDWR, 0644)
		checkError(err)
		defer file.Close()

		//read file and unmarshall json file to slice of users
		b, err := ioutil.ReadAll(file)
		var alUsrs model.AllUsers
		err = json.Unmarshal(b, &alUsrs.Users)
		checkError(err)
		max := 0

		//generation of id(last id at the json file+1)
		for _, usr := range alUsrs.Users {
			if usr.Id > max {
				max = usr.Id
			}
		}
		id := max + 1
		newUser.Id = id

		//appending newUser to slice of all Users and rewrite json file
		alUsrs.Users = append(alUsrs.Users, newUser)
		newUserBytes, err := json.MarshalIndent(&alUsrs.Users, "", " ")
		checkError(err)
		ioutil.WriteFile("list.json", newUserBytes, 0666)
		http.Redirect(w, r, "/", 301)

	}

}

//Index page handler
func IndexFunc(w http.ResponseWriter, r *http.Request) {
	au := model.ShowAllUsers()
	t, err := template.ParseFiles("templates/indexPage.html")
	checkError(err)
	t.Execute(w, au)
}

 

示例代码:model/model.go

package model

import (
	"encoding/json"
	"fmt"
	"io/ioutil"
	"os"
)

func checkError(err error) {
	if err != nil {
		fmt.Println(err)
	}
}

func IsValueInSlice(slice []int, value int) (result bool) {
	for _, n := range slice {
		if n == value {
			return true
		}

	}
	return false

}

type User struct {
	Id        int     `json:"id"`
	FirstName string  `json:"firstName"`
	LastName  string  `json:"lastName"`
	Balance   float64 `json:"balance"`
}

type AllUsers struct {
	Users []*User
}

func ShowAllUsers() (au *AllUsers) {
	file, err := os.OpenFile("list.json", os.O_RDWR|os.O_APPEND, 0666)
	checkError(err)
	b, err := ioutil.ReadAll(file)
	var alUsrs AllUsers
	json.Unmarshal(b, &alUsrs.Users)
	checkError(err)
	return &alUsrs
}

 

示例代码:templates\indexPage.html

<html>
<head>
	<title>User info</title>
</head>
<body>

{{range .Users}}
<div><h3> ID:{{ .Id }} </h3></div>
<div> First Name:{{ .FirstName }}</div>
<div> Last Name:{{ .LastName }} </div>
<div> Balance:{{ .Balance }}</div>
{{end}}

<h1>Options</h1>
<form action="/addnewuser/">
    <button type="submit">Add new user</button>
</form>
<form action="/deleteuser/">
    <button type="submit">Delete user</button>
</form>
<form action="/showuser/">
    <button type="submit">Show user</button>
</form>

</body>
</html>

 

示例代码:templates\addNewUser.html

<html>
<head>
	<title>Adding new user</title>
</head>
<body>
<h2>New user's data</h2>
        <form method="POST" action="useraded">
            <label>Enter firstname</label><br>
            <input type="text" name="firstname" /><br><br>
			<label>Enter lastname</label><br>
            <input type="text" name="lastname" /><br><br>
            <label>Enter balance</label><br>
            <input type="number" name="balance" /><br><br>
            <input type="submit" value="Submit" />
        </form>
</body>
</html>

 

示例代码:templates\deleteUser.html

<html>
<head>
	<title>Delete user</title>
</head>
<body>
<h2>Please,write an id of user you want to delete</h2>
        <form method="POST" action="deleted">
            <label>Enter id</label><br>
            <input type="text" name="id" /><br><br>
            <input type="submit" value="Submit" />
        </form>
</body>
</html>

 

示例代码:templates\deleted.html

<html>
<head>
	<title>User info</title>
</head>
<body>
	<div>Done</div><br><br>
	<form action="/">
		<button type="submit">Back to main</button>
	</form>
</body>
</html>

 

示例代码:templates\notSuccededDelete.html

<html>
<head>
	<title>User info</title>
</head>
<body>
<div>There is no user with such ID</div><br><br>
<form action="/">
    <button type="submit">Back to main</button>
</form>
</body>
</html>

 

示例代码:templates\notSuccededShow.html

<html>
<head>
	<title>User info</title>
</head>
<body>
<div>Error:Cant find User with such ID,try again</div><br><br>
<form action="/">
    <button type="submit">Back to main</button>
</form>
</body>
</html>

 

示例代码:templates\showUser.html

<html>
<head>
	<title>Show user</title>
</head>
<body>
<h2>Please,write an id of user you want to show</h2>
	<form method="POST" action="show">
		<label>Enter id</label><br>
		<input type="text" name="id" /><br><br>
		<input type="submit" value="Submit" />
	</form>
</body>
</html>

 

示例代码:templates\showUserPage.html

<html>
<head>
	<title>User info</title>
</head>
<body>
	<div><h3> ID:{{.Id}} </h3></div>
	<div> First Name:{{ .FirstName }}</div>
	<div> Last Name:{{ .LastName }} </div>
	<div> Balance:{{ .Balance }}</div>
</body>
</html>

 

示例代码:templates\notSucceded.html

<html>
<head>
	<title>User info</title>
</head>
<body>
<div>Error:{{.}}</div><br><br>
<form action="/">
    <button type="submit">Back to main</button>
</form>
</body>
</html>

 

运行应用程序:

go run main.go

 

在浏览器访问http://localhost:8080即可看到如下页面

© 本文著作权归作者所有。转载请联系授权,禁止商用。

🔗 系列文章

1. Go语言教程之边写边学:Go语言介绍

2. Go语言教程之边写边学:变量

3. Go语言教程之边写边学:常量

4. Go语言教程之边写边:数据类型定义

5. Go语言教程之边写边学:类型转换-如何在Go中将字符串转换为整数类型?

6. Go语言教程之边写边学:类型转换-如何在Go中将字符串转换为浮点类型?

7. Go语言教程之边写边学:类型转换-如何在Go中将字符串转换为布尔数据类型转换?

8. Go语言教程之边写边学:类型转换-如何在Go中将布尔类型转换为字符串?

9. Go语言教程之边写边学:类型转换-如何在 Go 中将浮点转换为字符串类型?

10. Go语言教程之边写边学:类型转换-integer到string转换的不同方式

11. Go语言教程之边写边学:类型转换-将Int数据类型转换为 Int16 Int32 Int64

12. Go语言教程之边写边学:类型转换-将float32转换为float64,将float64转换为float32

13. Go语言教程之边写边学:类型转换-将integer转换为float

14. Go语言教程之边写边学:运算符

15. Go语言教程之边写边学:If...Else...Else If条件语句

16. Go语言教程之边写边学:Switch…Case条件语句

17. Go语言教程之边写边学:For循环

18. Go语言教程之边写边学:函数

19. Go语言教程之边写边学:可变参数函数

20. Go语言教程之边写边学:延迟调用函数

21. Go语言教程之边写边学:panic和recover

22. Go语言教程之边写边学:数组array

23. Go语言教程之边写边学:切片slice

24. Go语言教程之边写边学:映射map

25. Go语言教程之边写边学:结构 struct

26. Go语言教程之边写边学:接口 interface

27. Go语言教程之边写边学:协程 Goroutine

28. Go语言教程之边写边学:通道 channel

29. Go语言教程之边写边学:并发 Concurrency

30. Go语言教程之边写边学:日志 logging

31. Go语言教程之边写边学:操作文件和文件夹,压缩和解压缩

32. Go语言教程之边写边学:读写不同的文件类型

33. Go语言教程之边写边学:正则表达式 Regex

34. Go语言教程之边写边学:golang中处理DNS记录

35. Go语言教程之边写边学:密码学 Cryptography

36. Go语言教程之边写边学:golang的一些陷阱

37. Go语言教程之边写边学:导入导出:如何从其他包或者子包中导入结构体

38. Go语言教程之边写边学:导入导出:用指针访问并修改其他包的变量

39. Go语言教程之边写边学:导入导出:如何导入包并声明包的别名

40. Go语言教程之边写边学:导入导出:如何实现来自不同包的接口?

41. Go语言教程之边写边学:导入导出:如何从另一个包调用函数?

42. Go语言教程之边写边学:导入导出:解引用来自另一个包的指针

43. Go语言教程之边写边学:常用的软件库:结构体和字段验证

44. Go语言教程之边写边学:常用的软件库:Golang中的动态JSON

45. Go语言教程之边写边学:常用的软件库:Golang统计包

46. Go语言教程之边写边学:常用的软件库:slice和map过滤器

47. Go语言教程之边写边学:常用的软件库:HTML解析器

48. Go语言教程之边写边学:常用的软件库:常用正则表达式包CommonRegex

49. Go语言教程之边写边学:常用的软件库:简单图像处理包

50. Go语言教程之边写边学:常用的软件库:图表包

51. Go语言教程之边写边学:常用的软件库:动态XML解析器

52. Go语言教程之边写边学:常用的软件库:时间工具包

53. Go语言教程之边写边学:web应用:如何创建照片库

54. Go语言教程之边写边学:web应用:获取Twitter趋势某个位置附近的热门主题标签

55. Go语言教程之边写边学:web应用:生成二维码的Web应用程序

56. Go语言教程之边写边学:web应用:读取和写入JSON数据的Web应用程序

57. Go语言教程之边写边学:Goroutines和Channels练习:启动多个Goroutine,每个goroutine都向一个频道添加值

58. Go语言教程之边写边学:Goroutines和Channels练习:从通道发送和接收值

59. Go语言教程之边写边学:Goroutines和Channels练习:将斐波那契数列读写到通道

60. Go语言教程之边写边学:Goroutines和Channels练习:Goroutines通道执行顺序

61. Go语言教程之边写边学:Goroutines和Channels练习:查找奇数和偶数

62. Go语言教程之边写边学:Goroutines和Channels练习:哲学家就餐问题

63. Go语言教程之边写边学:Goroutines和Channels练习:检查点同步问题

64. Go语言教程之边写边学:Goroutines和Channels练习:生产者消费者问题

65. Go语言教程之边写边学:Goroutines和Channels练习:睡眠理发师问题

66. Go语言教程之边写边学:Goroutines和Channels练习:吸烟者问题

67. Go语言教程之边写边学:Golang中的反射:Reflect 包的copy函数

68. Go语言教程之边写边学:Golang中的反射:Reflect包的DeepEqual函数

69. Go语言教程之边写边学:Golang中的反射:Reflect包的swapper函数

70. Go语言教程之边写边学:Golang中的反射:Reflect包的TypeOf函数

71. Go语言教程之边写边学:Golang中的反射:Reflect包的ValueOf函数

72. Go语言教程之边写边学:Golang中的反射:Reflect包的Field相关函数

73. Go语言教程之边写边学:Golang中的反射:Reflect包的Make相关函数

74. Go语言教程之边写边学:golang中创建结构体切片

75. Go语言教程之边写边学:golang中创建结构体字典

76. Go语言教程之边写边学:golang中捕获panic

77. Go语言教程之边写边学:检查结构体中是否存在某个字段

78. Go语言教程之边写边学:初始化包含结构体切片的结构体

79. Go语言教程之边写边学:使用空接口动态添加结构体成员

80. Go语言教程之边写边学:将结构字段转换为映射字符串

81. Go语言教程之边写边学:Golang中的字符串

82. Go语言教程之边写边学:Golang中的字符串:字符串操作

83. Go语言教程之边写边学:Golang中的字符串:字符串字符编码

84. Go语言教程之边写边学:Golang Web服务器示例

85. Go语言教程之边写边学:Go中的HTTP服务器

86. Go语言教程之边写边学:Go中的HTTP客户端

87. Go语言教程之边写边学:使用HTTP客户端在HTTP请求中设置标头

88. Go语言教程之边写边学:使用HTTP客户端从HTTP响应中读取标头

89. Go语言教程之边写边学:处理HTTP重定向

90. Go语言教程之边写边学:如何处理HTTP 错误

91. Go语言教程之边写边学:如何在HTTP响应中设置标头

92. Go语言教程之边写边学:如何读取HTTP响应中的标头

93. Go语言教程之边写边学:如何在HTTP请求中设置cookie

94. Go语言教程之边写边学:如何读取HTTP请求中的cookie

95. Go语言教程之边写边学:如何处理HTTP身份验证

96. Go语言教程之边写边学:如何在HTTP客户端处理HTTP超时

97. Go语言教程之边写边学:如何优雅地处理HTTP服务器关闭

98. Go语言教程之边写边学:如何处理HTTP客户端-服务器安全

99. Go语言教程之边写边学:如何处理HTTP服务器负载均衡

100. Go语言教程之边写边学:如何处理HTTP服务器缓存

101. Go语言教程之边写边学:如何处理HTTP客户端缓存

102. Go语言教程之边写边学:如何处理HTTP服务器健康检查

103. Go语言教程之边写边学:如何处理HTTP客户端请求压缩

104. Go语言教程之边写边学:如何处理HTTP服务器日志记录

105. Go语言教程之边写边学:如何创建HTTP/2服务器

106. Go语言教程之边写边学:如何向Prometheus发出服务器预警

107. Go语言教程之边写边学:标准库:Context包

108. Go语言教程之边写边学:基础练习:打印金字塔型星号

109. Go语言教程之边写边学:基础练习:检查一个数字是否是回文

110. Go语言教程之边写边学:基础练习:打印乘法表

111. Go语言教程之边写边学:基础练习:打印帕斯卡三角形

112. Go语言教程之边写边学:基础练习:如何创建多个goroutine,如何使用三个逻辑处理器

113. Go语言教程之边写边学:基础练习:如何提高 Golang 应用程序的性能?

114. Go语言教程之边写边学:基础练习:类型嵌入和方法覆盖的接口示例

115. Go语言教程之边写边学:基础练习:如何使用WaitGroup将main函数的执行延迟到所有goroutines完成后

116. Go语言教程之边写边学:基础练习:逐行读取文件到字符串

117. Go语言教程之边写边学:基础练习:并发最佳实践

118. Go语言教程之边写边学:基础练习:2023年要遵循的最佳实践

119. Go语言教程之边写边学:基础练习:如何获取带有本地时区的当前日期和时间

120. Go语言教程之边写边学:基础练习:获取今天是星期几,今天是今年的第几天,本周是今年的第几周?

121. Go语言教程之边写边学:基础练习:获取 EST、UTC 和 MST 中的当前日期和时间

122. Go语言教程之边写边学:基础练习:获取两个日期之间的小时、天、分钟和秒差 [未来和过去]

123. Go语言教程之边写边学:基础练习:将年、月、日、小时、分钟、秒、毫秒、微秒和纳秒添加到当前日期时间

124. Go语言教程之边写边学:基础练习:将年、月、日、小时、分钟、秒、毫秒、微秒和纳秒从当前日期时间减去

125. Go语言教程之边写边学:基础练习:以各种格式获取当前日期和时间

126. Go语言教程之边写边学:基础练习:从当前日期和时间获取年、月、日、小时、分钟和秒

127. Go语言教程之边写边学:基础练习:将特定的UTC日期时间转换为 PST、HST、MST 和 SGT

128. Go语言教程之边写边学:基础练习:使用carbon日期时间包

129. Go语言教程之边写边学:基础练习:切片排序、反转、搜索功能

130. Go语言教程之边写边学:基础练习:常用字符串函数(1)

131. Go语言教程之边写边学:基础练习:常用字符串函数(2)

132. Go语言教程之边写边学:基础练习:常用字符串函数(3)

133. Go语言教程之边写边学:基础练习:常用字符串函数(4)

134. Go语言教程之边写边学:基础练习:方法和对象

135. Go语言教程之边写边学:基础练习:接口的设计理念

136. Go语言教程之边写边学:数据结构与算法:线性搜索

137. Go语言教程之边写边学:数据结构与算法:二分搜索

138. Go语言教程之边写边学:数据结构与算法:插值搜索

139. Go语言教程之边写边学:数据结构与算法:冒泡排序

140. Go语言教程之边写边学:数据结构与算法:快速排序

141. Go语言教程之边写边学:数据结构与算法:选择排序

142. Go语言教程之边写边学:数据结构与算法:希尔排序

143. Go语言教程之边写边学:数据结构与算法:插入排序

144. Go语言教程之边写边学:数据结构与算法:梳排序

145. Go语言教程之边写边学:数据结构与算法:归并排序

146. Go语言教程之边写边学:数据结构与算法:基数排序

147. Go语言教程之边写边学:数据结构与算法:烧饼排序

148. Go语言教程之边写边学:数据结构与算法:二叉树

149. Go语言教程之边写边学:数据结构与算法:Rabin-Karp

150. Go语言教程之边写边学:数据结构与算法:链表 Linked List

151. Go语言教程之边写边学:数据结构与算法:LIFO堆栈和FIFO队列

152. Go语言教程之边写边学:数据结构与算法:BFPRT中位数的中位数

153. Go语言教程之边写边学:数据结构与算法:LCS最长公共子序列

154. Go语言教程之边写边学:数据结构与算法:Levenshtein Distance编辑距离

155. Go语言教程之边写边学:数据结构与算法:KMP算法 字符串匹配算法

156. Go语言教程之边写边学:数据结构与算法:Floyd–Warshall多源最短路径

157. Go语言教程之边写边学:数据结构与算法:汉诺塔Tower of Hanoi

158. Go语言教程之边写边学:数据结构与算法:哈夫曼编码(Huffman Coding)

159. Go语言教程之边写边学:数据结构与算法:绘制长方体

160. Go语言教程之边写边学:数据结构与算法:生成随机迷宫

161. Go语言教程之边写边学:数据结构与算法:生成数字折线矩阵

162. Go语言教程之边写边学:数据结构与算法:生成数字螺旋矩阵

163. Go语言教程之边写边学:数据结构与算法:生成自平衡二叉查找树 AVL tree

164. Go语言教程之边写边学:数据结构与算法:打印给定字符串的所有排列

165. Go语言教程之边写边学:数据结构与算法:LZW 数据无损压缩和解压缩

166. Go语言教程之边写边学:了解go中并发工作原理:了解goroutine

167. Go语言教程之边写边学:了解go中并发工作原理:将channel用作通信机制

168. Go语言教程之边写边学:了解go中并发工作原理:了解有缓冲channel

169. Go语言教程之边写边学:了解go中并发工作原理:挑战:利用并发方法更快地计算斐波纳契数

170. Go语言教程之边写边学:编写并测试程序 :概述网上银行项目

171. Go语言教程之边写边学:编写并测试程序 :开始编写测试

172. Go语言教程之边写边学:编写并测试程序 :编写银行核心程序包

173. Go语言教程之边写边学:编写并测试程序 :编写银行 API

174. Go语言教程之边写边学:编写并测试程序 :完成银行项目功能

175. Go语言教程之边写边学:了解如何在 Go 中处理错误

176. Go语言教程之边写边学:标准库:strings(1)

177. Go语言教程之边写边学:标准库:strings(2)

178. Go语言教程之边写边学:标准库:strings(3)

179. Go语言教程之边写边学:标准库:strings(4)

180. Go语言教程之边写边学:标准库:strings(5)

181. Go语言教程之边写边学:标准库:strings(6)