概述
Golang常用lib收集
-
https://github.com/thedevsaddam/gojsonq
-
http://jsoniter.com/index.cn.html
https://github.com/json-iterator/go -
比较受欢迎的json库:https://github.com/bitly/go-simplejson
-
单元测试:https://github.com/smartystreets/goconvey
-
http请求:https://github.com/parnurzeal/gorequest
func gorequestSimple(){
request := gorequest.New()
_, body, errs := request.Put("http://admin-backend.xin7c.cn/api/users/login").
Set("Content-Type", "application/json").
Send(`{"email":"xin7c@cc.ai", "password":"123456"}`).
End()
if errs == nil{
//fmt.Println("gorequestSimple:", resp)
js, _ := simplejson.NewJson([]byte(body))
fmt.Println("gorequestSimple:",js.Get("data").Get("token").MustString("tokenisnull"))
}
}
最后
以上就是殷勤樱桃为你收集整理的Golang常用lib收集的全部内容,希望文章能够帮你解决Golang常用lib收集所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复