91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

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

本篇內容主要講解“Go語言中Get/Post請求測試實例分析”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“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請求測試

實現一個web服務還是比較簡單的,創建一個router,綁定路由規則即可。先測試幾個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")
}

執行結果

[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方法的時候,可以提供一個默認值。

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

Post請求測試

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

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

所以下面我使用form參數和body參數實現了一下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"`
}
 
//反序列化為結構體對象
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方法可以提供一個默認值。

2、可以使用gin.H方法構造json結構返回。

3、將獲得打參數反序列化為結構體,這部分的代碼使用到之前講json解析的筆記。

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

揭西县| 大埔县| 和田县| 邓州市| 武隆县| 特克斯县| 西宁市| 犍为县| 武平县| 高碑店市| 商洛市| 绥芬河市| 体育| 句容市| 碌曲县| 济源市| 花莲市| 亳州市| 福泉市| 三台县| 博爱县| 叙永县| 宣汉县| 会宁县| 土默特右旗| 崇仁县| 济南市| 垦利县| 肇源县| 车致| 苏尼特左旗| 纳雍县| 兴隆县| 额济纳旗| 大英县| 辽阳县| 松溪县| 新民市| 鹿邑县| 潜江市| 富阳市|