gin的url查詢參數解析

来源:https://www.cnblogs.com/albizzia/archive/2019/04/11/10693122.html
-Advertisement-
Play Games

gin作為go語言最知名的網路庫,在這裡我簡要介紹一下url的查詢參數解析。主要是這裡面存在一些需要註意的地方。這裡,直接給出代碼,和運行結果,在必要的地方進行分析。 代碼1: 測試結果: 輸出結果: curl "http://localhost:8080/getb?field_a=hello&fi ...


gin作為go語言最知名的網路庫,在這裡我簡要介紹一下url的查詢參數解析。主要是這裡面存在一些需要註意的地方。這裡,直接給出代碼,和運行結果,在必要的地方進行分析。

代碼1:

type StructA struct {
    FieldA string `form:"field_a"`
}

type StructB struct {
    NestedStruct StructA
    FieldB string `form:"field_b"`
}

type StructC struct {
    NestedStructPointer *StructA
    FieldC string `form:"field_c"`
}

func GetDataB(c *gin.Context) {
    var b StructB
    c.Bind(&b)
    c.JSON(200, gin.H{
        "a": b.NestedStruct,
        "b": b.FieldB,
    })
}

func GetDataC(c *gin.Context) {
    var b StructC
    c.Bind(&b)
    c.JSON(200, gin.H{
        "a": b.NestedStructPointer,
        "c": b.FieldC,
    })
}

func main() {
    r := gin.Default()
    r.GET("/getb", GetDataB)
    r.GET("/getc", GetDataC)

    r.Run()
}

 測試結果:

$ curl "http://localhost:8080/getb?field_a=hello&field_b=world"
{"a":{"FieldA":"hello"},"b":"world"}
$ curl "http://localhost:8080/getc?field_a=hello&field_c=world"
{"a":{"FieldA":"hello"},"c":"world"}

上述結果顯示gin的query解析可以嵌套賦值,只需要form tag和傳入的參數一致。
再看下麵的代碼:
代碼2:
package main

import (
	"github.com/gin-gonic/gin"
)

type StructA struct {
	FieldA string `form:"field_a"`
}

type StructB struct {
	StructA
	FieldB string `form:"field_b"`
}

type StructC struct {
	*StructA
	FieldC string `form:"field_c"`
}

func GetDataB(c *gin.Context) {
	var b StructB
	c.Bind(&b)
	c.JSON(200, gin.H{
		"a": b.FieldA,
		"b": b.FieldB,
	})
}

func GetDataC(c *gin.Context) {
	var b StructC
	c.Bind(&b)
	c.JSON(200, gin.H{
		"a": b.FieldA,
		"c": b.FieldC,
	})
}

func main() {
	r := gin.Default()
	r.GET("/getb", GetDataB)
	r.GET("/getc", GetDataC)

	r.Run()
}

 輸出結果:

curl "http://localhost:8080/getb?field_a=hello&field_b=world"
{"a":"hello","b":"world"}

curl "http://localhost:8080/getc?field_a=hello&field_c=world"
{"a":"hello","c":"world"}

結果顯示,gin的url查詢參數解析可以正常處理嵌套的結構體,只需要form tag和傳入的參數一致。

再看下麵代碼:

 代碼3:

package main

import (
	"github.com/gin-gonic/gin"
)

type structA struct {
	FieldA string `form:"field_a"`
}

type StructB struct {
	structA
	FieldB string `form:"field_b"`
}

type StructC struct {
	*structA
	FieldC string `form:"field_c"`
}

func GetDataB(c *gin.Context) {
	var b StructB
	c.Bind(&b)
	c.JSON(200, gin.H{
		"a": b.FieldA,
		"b": b.FieldB,
	})
}

func GetDataC(c *gin.Context) {
	var b StructC
	c.Bind(&b)
	c.JSON(200, gin.H{
		"a": b.FieldA,
		"c": b.FieldC,
	})
}

func main() {
	r := gin.Default()
	r.GET("/getb", GetDataB)
	r.GET("/getc", GetDataC)

	r.Run()
}

 

註意,上述代碼只是將StructA改為structA,也就是說大小寫變化。測試結果如下:

curl "http://localhost:8080/getb?field_a=hello&field_b=world"
{"a":"","b":"world"}

curl "http://localhost:8080/getc?field_a=hello&field_c=world"

客戶端顯示為空,伺服器列印一個panic語句,錯誤類型是runtime error: invalid memory address or nil pointer dereference,一系列panic堆棧,然後是:

[GIN] 2019/04/11 - 22:07:01 | 500 |    2.403482ms |       127.0.0.1 | GET      /getc?field_a=hello&field_c=world,顯示狀態碼是500。

可見,對於結構體嵌套解析,只有結構體是大寫的情況下才可以有效解析,小寫的情況下,要麼不解析,要麼解析出現異常。

下麵再看一段代碼,官方提示的錯誤:

代碼4:

package main

import (
	"github.com/gin-gonic/gin"
)

type StructA struct {
	FieldA string
}

type StructB struct {
	NestedStruct StructA `form:"field_a"`
	FieldB       string  `form:"field_b"`
}

type StructC struct {
	NestedStructPointer *StructA `form:"field_a"`
	FieldC              string   `form:"field_c"`
}

func GetDataB(c *gin.Context) {
	var b StructB
	c.Bind(&b)
	c.JSON(200, gin.H{
		"a": b.NestedStruct,
		"b": b.FieldB,
	})
}

func GetDataC(c *gin.Context) {
	var b StructC
	c.Bind(&b)
	c.JSON(200, gin.H{
		"a": b.NestedStructPointer,
		"c": b.FieldC,
	})
}

func main() {
	r := gin.Default()
	r.GET("/getb", GetDataB)
	r.GET("/getc", GetDataC)

	r.Run()
}

 這裡註意StructA結構體的tag的位置發生了變化。結果如下:

curl "http://localhost:8080/getb?field_a=hello&field_b=world"
{"a":{"FieldA":""},"b":""}

curl "http://localhost:8080/getc?field_a=hello&field_c=world"
{"a":null,"c":""}

可見,這種書寫tag的方式存在問題,對應的結構體成員不能正確的解析。)

 

關於其他情況, 經過測試

(1)對於代碼1,將其中的StructA改寫外structA,參數可以正確解析。

(2)對於代碼1,將NestedStruct改為nestedStruct, NestedStructPointer改為nestedStructPointer,對應欄位不再解析。

 

關於tag中的binding:"required"參數,我有一點需要補充的,下麵為實例代碼:

代碼5:

package main

import (
	"github.com/gin-gonic/gin"
)

type StructA struct {
	FieldA int `form:"field_a" binding:"required"`
}

type StructB struct {
	NestedStruct StructA
	FieldB       string `form:"field_b" binding:"required"`
}

func GetDataB(c *gin.Context) {
	var b StructB
	c.Bind(&b)
	c.JSON(200, gin.H{
		"a": b.NestedStruct,
		"b": b.FieldB,
	})
}

func main() {
	r := gin.Default()
	r.GET("/getb", GetDataB)

	r.Run()
}

 註意FieldA的類型和tag,類型由String改為int, tag添加了`bind:"required"`。測試結果如下:

curl "http://localhost:8080/getb?field_a=hello&field_b=world"
{"a":{"FieldA":0},"b":""}

服務端有一個額外的列印:

[GIN-debug] [WARNING] Headers were already written. Wanted to override status code 400 with 200

curl "http://localhost:8080/getb?field_a=0&field_b=world"
{"a":{"FieldA":0},"b":"world"}

服務端有一個額外的列印:

[GIN-debug] [WARNING] Headers were already written. Wanted to override status code 400 with 200

curl "http://localhost:8080/getb?field_b=world"
{"a":{"FieldA":0},"b":"world"}

服務端有一個額外的列印:

[GIN-debug] [WARNING] Headers were already written. Wanted to override status code 400 with 200

curl "http://localhost:8080/getb?field_a=1&field_b=world"
{"a":{"FieldA":1},"b":"world"}

服務端沒有額外的列印。

curl "http://localhost:8080/getb?field_a=1&field_b="
{"a":{"FieldA":1},"b":""}

服務端有一個額外的列印:

[GIN-debug] [WARNING] Headers were already written. Wanted to override status code 400 with 200

可見,gin對於bind:"required"的判斷非常簡單,對於int類型,是判斷這個int類型是否為0,無論是否顯示設置的0,都視為參數錯誤,對於字元串參數來說,是判斷是否為空字元串。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 拜托,面試別再問我跳錶了! 何為跳錶? 跳錶使用什麼樣的存儲結構? 為何Redis選擇用跳錶來實現有序集合? ...
  • 一、什麼是文件 等等這些都叫做文件,各種格式的。但不僅僅限制於這些。 二、文件的作用 大家應該聽說過一句話:“好記性不如爛筆頭”。 不僅人的大腦會遺忘事情,電腦也會如此,比如一個程式在運行過程中用了九牛二虎之力終於計算出了結果,試想一下如果不把這些數據存放起來,相比重啟電腦之後,“哭都沒地方哭了” ...
  • 原文使用的是python2,現修改為python3,全部都實際輸出過,可以運行。 引用自:http://www.cnblogs.com/duyaya/p/8562898.html https://blog.csdn.net/cv_you/article/details/70880405 python ...
  • 棧:後進先出(LIFO)表。 特點:只允許在頂部進行存取操作的順序表。 基本操作: push:入棧,即將元素壓入棧頂 pop:出棧,即將棧頂元素刪除 top:輸出棧頂元素 應用場景: 平衡符號:編譯器中用於檢查符號是否成對出現,方法為做一個空棧,讀取字元,如果字元是一個開放符號如“{”、“(”、“[ ...
  • 今天來繼續學習一下Numpy庫的使用 接著昨天的內容繼續 在Numpy中,我們如果想要進行一個判斷使用“==” 我們來看下麵的代碼 我們來看看上面的代碼,這段代碼表示的是什麼意思呢? vector == 10 表示的是,當前的array當中所有的元素都會進行判斷 是否等於10 我們可以看到,運行結果 ...
  • 程式在記憶體中的存儲分為三個區域,分別是動態數據區、靜態數據區和代碼區。函數存儲在代碼區,全局變數以及靜態變數存儲在靜態數據區,而在程式執行的時候才會在動態數據區產生數據。程式執行的本質就是代碼區的指令不斷執行,驅使動態數據區和靜態數據區產生數據變化。 代碼區與動態數據區由三個寄存器控制,分別是eip ...
  • 在JDK1.2以後將對象應用分為4中,強引用,軟引用,弱引用,虛引用,這樣的方式可以更加靈活控制對象的聲明周期 強引用 String str = "123"; 這時我們日常用的引用,只要對象與強引用關聯,如果記憶體不足時,JVM寧願拋出OutOfMemoryError記憶體溢出錯誤也不會回收強引用 如果 ...
  • 完全個人總接 每個文件頭部都可以加入這個,或者放到用單獨一個文件,再import *。其實都一樣,只需要一行false=False;true=True;none=null=None;hid=lambda o:"0x%X"%id(o) 作用:可以像多數語言一樣用小寫的關鍵字,布爾:false/true ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...