cd %GOPATH%go env -w GOPROXY=https://goproxy.io,directgo env -w GO111MODULE=on go get golang.org/x/tools/gopls@latest 结束记得关闭go env -w GO111MODULE=off ...
分类:
其他好文 时间:
2020-08-10 15:51:04
阅读次数:
98
前言 不做文字搬运工,多做思路整理 就是为了能速览标准库,只整理我自己看过的...... 注意!!!!!!!!!! 单词都是连着的,我是为了看着方便、理解方便才分开的 1.strconv 中文文档 [英文文档] 2.表格总结 3.使用总结 跳转 golang知识库总结 golang 标准库 ...
分类:
其他好文 时间:
2020-08-06 13:12:47
阅读次数:
63
这篇博客还是整理从https://github.com/LyricTian/gin-admin 这个项目中学习的golang相关知识。 作者在项目中使用了 github.com/casbin/casbin 进行权限控制的,这个库自己之前也没有用过,正好可以通过这个项目学习一下使用。 当然这篇博客并不 ...
分类:
其他好文 时间:
2020-08-01 00:12:46
阅读次数:
102
package main import ( "encoding/json" "fmt" ) type User struct { Name string Age int64 Height float64 Weight string `json:"weight, default:helll"` Tes ...
分类:
Web程序 时间:
2020-07-22 15:36:14
阅读次数:
91
遇到经典问题 func mian() { resslice := []int{1, 2, 3, 4} for _, v := range resslice { fmt.Println(v) defer fun1(v) } } func fun1(value int) { fmt.Println(va ...
分类:
其他好文 时间:
2020-07-21 13:42:40
阅读次数:
52
package main import ( "golang.org/x/tour/pic" "image/color" "image" ) type Image struct{} func (i Image) ColorModel() color.Model { return color.RGBAM ...
分类:
其他好文 时间:
2020-07-20 13:17:01
阅读次数:
57
示例系统 Windows 10 安装Go语言开发工具 根据自己的喜好在以下两个链接中,选择其中一个来下载Go语言开发工具,选择下载以.msi作为后缀名的Windows版。 Go语言中文网 Go语言官网(需要魔法上网) 检查Go语言开发工具是否可用 在命令行中直接输入Go命令,如果显示出如以下的提示, ...
分类:
编程语言 时间:
2020-07-19 16:31:39
阅读次数:
96
安装请参考官方资料-快速开始,安装gRPC需要安装Go、protocol buffer、protoc-gen-go、gRPC等。 1.安装Go,grpc是用Golang开发的,所以需要安装Go; 2.下载protocol buffer,这是gRPC的协议编译工具,写好proto之后,需要用这个编译。... ...
分类:
其他好文 时间:
2020-07-18 15:29:40
阅读次数:
101
file ,err :=os.Open("d:\\aaa.txt") // 打开文件句柄 if err!=nil{ fmt.Println("打开文件出错") }else { fmt.Println("文件存在") } read := bufio.NewReader(file) // 创建文件读取对 ...
分类:
其他好文 时间:
2020-07-13 13:26:03
阅读次数:
97