上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 75 下一页
摘要: https://studygolang.com/articles/1035 首先,来看看这段 PHP 代码: function foobar() { echo "Hello Golang\n"; } $funcs = array( "foobar" => "foobar", "hello" => " 阅读全文
posted @ 2021-09-03 17:16 浮尘微光 阅读(552) 评论(0) 推荐(0) 编辑
摘要: 问题描述:mysql中带有反斜杠的内容入库后,发现反斜杠无故失踪了(俗话说被吃掉了) 例:插入insert into tb('url') values('absc\eeee'); 结果数据库里的内容是:absceeee(反斜杠没了呢)这么详细了相信大家都搞清楚问题了吧,下面看解决方案。解决方案:用a 阅读全文
posted @ 2021-09-02 16:29 浮尘微光 阅读(372) 评论(0) 推荐(0) 编辑
摘要: https://studygolang.com/articles/18541?fr=sidebar defer是什么? 在Go语言中,可以使用关键字defer向函数注册退出调用,即主函数退出时,defer后的函数才被调用。defer语句的作用是不管程序是否出现异常,均在函数退出时自动执行相关代码。 阅读全文
posted @ 2021-08-26 20:44 浮尘微光 阅读(489) 评论(0) 推荐(0) 编辑
摘要: (1)int转string 1 2 s := strconv.Itoa(i) 等价于s := strconv.FormatInt(int64(i), 10) (2)int64转string 1 2 i := int64(123) s := strconv.FormatInt(i, 10) 第二个参数 阅读全文
posted @ 2021-08-26 11:17 浮尘微光 阅读(1403) 评论(0) 推荐(0) 编辑
摘要: // Strval 获取变量的字符串值 // 浮点型 3.0将会转换成字符串3, "3" // 非数值或字符类型的变量将会被转换成JSON格式字符串 func Strval(value interface{}) string { var key string if value == nil { re 阅读全文
posted @ 2021-08-20 17:46 浮尘微光 阅读(2661) 评论(0) 推荐(0) 编辑
摘要: golang发起GET请求 基本的GET请求 //基本的GET请求 package main import ( "fmt" "io/ioutil" "net/http" ) func main() { resp, err := http.Get("http://httpbin.org/get") i 阅读全文
posted @ 2021-08-20 17:16 浮尘微光 阅读(6062) 评论(0) 推荐(1) 编辑
摘要: Json转struct例子: 注意json里面的key和struct里面的key要一致,struct中的key的首字母必须大写,而json中大小写都可以。 package main import ( "fmt" "encoding/json" ) type People struct { Name 阅读全文
posted @ 2021-08-19 20:43 浮尘微光 阅读(409) 评论(0) 推荐(0) 编辑
摘要: go get -u gopkg.in/mgo.v2 package main import ( "log" "time" "gopkg.in/mgo.v2" "gopkg.in/mgo.v2/bson" ) const ( MongoDBHosts = "127.0.0.1:27017" AuthD 阅读全文
posted @ 2021-08-19 17:27 浮尘微光 阅读(775) 评论(1) 推荐(0) 编辑
摘要: golang 使用 “gopkg.in/mgo.v2” 查询mongo总结。mongo的增加,更新和删除操作比较简单,查询操作相对灵活复杂一些,下面对golang 查询 mongo 做个总结。完整代码上传到了 https://gitee.com/truthalone/go-mongo.git 。 1 阅读全文
posted @ 2021-08-19 16:07 浮尘微光 阅读(2711) 评论(0) 推荐(1) 编辑
摘要: func getJSON(vehicleType string, sqlString string) (string, error) { rows, err := mysql.GetDB(vehicleType).Query(sqlString) if err != nil { return "", 阅读全文
posted @ 2021-08-19 15:27 浮尘微光 阅读(441) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 75 下一页