关于Golang的使用

1.Golang 同一package下不同文件方法的调用,方法首字母需大写即可

2.Golang方法参数传递,需要声明变量类型

3.Golang http请求,不校验证书的方法

tr := &http.Transport{
    TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
client := &http.Client{Transport:tr}

client.PostForm(url,info)
原文地址:https://www.cnblogs.com/xiledada/p/7462348.html