溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Go語言中Get/Post請求測試實例分析

發(fā)布時間:2022-06-01 10:59:05 來源:億速云 閱讀:779 作者:zzz 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Go語言中Get/Post請求測試實例分析”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“Go語言中Get/Post請求測試實例分析”吧!

gin安裝

先將gin安裝一下,安裝依賴go語言還是比較方便的。

在安裝之前先配置一下goproxy。

命令如下:

go env -w GO111MODULE=on
go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/   //阿里代理
go env -w GOPROXY=https://goproxy.cn   //七牛云代理

安裝一下gin,命令如下:

go get github.com/gin-gonic/gin

Get請求測試

實現(xiàn)一個web服務(wù)還是比較簡單的,創(chuàng)建一個router,綁定路由規(guī)則即可。先測試幾個Get請求。

樣例代碼如下:

package main
 
import (
	"github.com/gin-gonic/gin"
	"net/http"
)
 
func main() {
	router := gin.Default()
	router.GET("/", func(context *gin.Context) {
		context.String(http.StatusOK, "hello world")
	})
 
	router.GET("/test/:name", func(context *gin.Context) {
		name := context.Param("name")
		context.String(http.StatusOK, "check param %s", name)
	})
 
	router.GET("/test1", func(context *gin.Context) {
		name := context.DefaultQuery("name", "張三")
		gender := context.Query("gender")
		context.String(http.StatusOK, "他叫%s,性別:%s", name, gender)
	})
 
	router.Run(":8080")
}

執(zhí)行結(jié)果

[GIN-debug] [WARNING] Running in "debug" mode. Switch to "release" mode in production.
 - using env:   export GIN_MODE=release
 - using code:  gin.SetMode(gin.ReleaseMode)

[GIN-debug] GET    /                         --> main.main.func1 (3 handlers)
[GIN-debug] GET    /test/:name               --> main.main.func2 (3 handlers)
[GIN-debug] GET    /test1                    --> main.main.func3 (3 handlers)
[GIN-debug] [WARNING] You trusted all proxies, this is NOT safe. We recommend you to set a value.
Please check https://pkg.go.dev/github.com/gin-gonic/gin#readme-don-t-trust-all-proxies for details.
[GIN-debug] Listening and serving HTTP on :8080

[GIN-debug] [WARNING] You trusted all proxies, this is NOT safe. We recommend yo
u to set a value.
Please check https://pkg.go.dev/github.com/gin-gonic/gin#readme-don-t-trust-all-
proxies for details.
[GIN-debug] Listening and serving HTTP on :8080

測試一下,這里我是用的接口測試工具為ApiPost

Go語言中Get/Post請求測試實例分析

Go語言中Get/Post請求測試實例分析

Go語言中Get/Post請求測試實例分析

注意

1、在使用context.DefaultQuery方法的時候,可以提供一個默認(rèn)值。

2、除了可以使用":"來獲取路徑參數(shù)外,可以使用"*",可以匹配更多規(guī)則。我個人感覺我不會這么用get請求參數(shù)。

Post請求測試

Post請求是在項目中使用的比較多的,而且不管是使用form獲取參數(shù)還是body,都十分常見。

同時返回的數(shù)據(jù)也不可能使用一行字符串,實際項目中還是使用json格式居多。

所以下面我使用form參數(shù)和body參數(shù)實現(xiàn)了一下post測試接口。

完成代碼如下

package main
 
import (
	"encoding/json"
	"fmt"
	"github.com/gin-gonic/gin"
	"io/ioutil"
	"net/http"
)
 
type Result struct {
	Name string `json:"name"`
	Age  int    `json:"age"`
}
 
//反序列化為結(jié)構(gòu)體對象
func parseJson(a string) Result {
	fmt.Printf("原始字符串: %s\n", a)
	var c Result
	if err := json.Unmarshal([]byte(a), &c); err != nil {
		fmt.Println("Error =", err)
		return c
	}
	return c
}
 
func main() {
	router := gin.Default()
	router.GET("/", func(context *gin.Context) {
		context.String(http.StatusOK, "hello world")
	})
 
	router.GET("/test/:name", func(context *gin.Context) {
		name := context.Param("name")
		context.String(http.StatusOK, "check param %s", name)
	})
 
	router.GET("/test1", func(context *gin.Context) {
		name := context.DefaultQuery("name", "張三")
		gender := context.Query("gender")
		context.String(http.StatusOK, "他叫%s,性別:%s", name, gender)
	})
 
	router.POST("/testPost", func(context *gin.Context) {
		name := context.PostForm("name")
		nick := context.DefaultPostForm("nick", "leo")
		context.JSON(http.StatusOK, gin.H{
			"status": gin.H{
				"code":    http.StatusOK,
				"success": true,
			},
			"name": name,
			"nick": nick,
		})
	})
 
	router.POST("/testPost2", func(context *gin.Context) {
		data, _ := ioutil.ReadAll(context.Request.Body)
		fmt.Println(string(data))
		context.JSON(http.StatusOK, gin.H{
			"code": http.StatusOK,
			"data": parseJson(string(data)),
		})
	})
 
	router.Run(":8080")
}

測試一下testPost和testPost2接口

Go語言中Get/Post請求測試實例分析

Go語言中Get/Post請求測試實例分析

注意

1、使用context.DefaultPostForm方法可以提供一個默認(rèn)值。

2、可以使用gin.H方法構(gòu)造json結(jié)構(gòu)返回。

3、將獲得打參數(shù)反序列化為結(jié)構(gòu)體,這部分的代碼使用到之前講json解析的筆記。

到此,相信大家對“Go語言中Get/Post請求測試實例分析”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI