golang
-
golang中使用mongodb
一、mongodb封装代码 var client *mongo.Client func NewMongoDB(ctx context.Context, appUri string)…
-
Golang 输入输出详解
Golang 输入 package main import ( “bufio” “fmt” “os” “strconv” “strings” ) func main() { // …
-
golang中判断文件是否存在
// 如果数据库目录不存在,则新建一个if _, err := os.Stat(dirPath); os.IsNotExist(err) { if err := os.Mkdi…
-
GPS坐标系转换 go golang 版本
package util import ( “math” “strconv” ) // GPSUtil is a utility class for GPS calculation…
-
golang的defer踩坑汇总
原文链接:http://www.zhoubotong.site/post/50.html defer语句用于延迟函数调用,每次会把一个函数压入栈中,函数返回前再把延迟的函数取出并执…
-
VS Code中Golang远程开发的调试和测试
在 .vscode 目录下创建如下两个文件launch.json { “configurations”: [ { “name”: “Connect to server”, “typ…
-
运行 Go 报错:exercise-maps.go:4:2: cannot find package “code.google.com/p/go-tour/wc” in any of: c:/go/src/code.google.com/p/go-tour/wc (from $GOROOT) 的解决
1、查看 Go 文件:exercise-maps.go,代码如下 package main import ( "code.google.com/p/go-tour/wc&…
-
golang添加代理下载加速
linux/mac 设置你的 bash 环境变量 echo “export GOPROXY=https://goproxy.io,direct” >&…