我是靠谱客的博主 殷勤樱桃,最近开发中收集的这篇文章主要介绍Golang常用lib收集,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Golang常用lib收集

  1. https://github.com/thedevsaddam/gojsonq

  2. http://jsoniter.com/index.cn.html
    https://github.com/json-iterator/go

  3. 比较受欢迎的json库:https://github.com/bitly/go-simplejson

  4. 单元测试:https://github.com/smartystreets/goconvey

  5. 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收集所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部