主頁 > 知識庫 > gin使用自定義結(jié)構綁定表單數(shù)據(jù)的示例代碼

gin使用自定義結(jié)構綁定表單數(shù)據(jù)的示例代碼

熱門標簽:利用地圖標注位置 谷歌美發(fā)店地圖標注 地圖區(qū)域圖標注后導出 赤峰電銷 400開頭電話怎樣申請 貴州電話智能外呼系統(tǒng) 江蘇呼叫中心外呼系統(tǒng)有效果嗎 官渡電銷外呼管理系統(tǒng)怎么收費 杭州人工智能電銷機器人費用

以下示例使用自定義結(jié)構

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"`
}
 
type StructD struct {
  NestedAnonyStruct struct {
    FieldX string `form:"field_x"`
  }
  FieldD string `form:"field_d"`
}
 
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 GetDataD(c *gin.Context) {
  var b StructD
  c.Bind(b)
  c.JSON(200, gin.H{
    "x": b.NestedAnonyStruct,
    "d": b.FieldD,
  })
}
 
func main() {
  r := gin.Default()
  r.GET("/getb", GetDataB)
  r.GET("/getc", GetDataC)
  r.GET("/getd", GetDataD)
 
  r.Run()
}

運行示例:

$ curl "http://localhost:8080/getb?field_a=hellofield_b=world"
{"a":{"FieldA":"hello"},"b":"world"}
$ curl "http://localhost:8080/getc?field_a=hellofield_c=world"
{"a":{"FieldA":"hello"},"c":"world"}
$ curl "http://localhost:8080/getd?field_x=hellofield_d=world"
{"d":"world","x":{"FieldX":"hello"}}

 

注意:不支持以下樣式結(jié)構

type StructX struct {
  X struct {} `form:"name_x"` // HERE have form
}
 
type StructY struct {
  Y StructX `form:"name_y"` // HERE have form
}
 
type StructZ struct {
  Z *StructZ `form:"name_z"` // HERE have form
}

總之,現(xiàn)在只支持現(xiàn)在沒有form標簽的自定義結(jié)構

到此這篇關于gin使用自定義結(jié)構綁定表單數(shù)據(jù)的示例代碼的文章就介紹到這了,更多相關gin綁定表單數(shù)據(jù)內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • Django框架獲取form表單數(shù)據(jù)方式總結(jié)
  • 使用Django Form解決表單數(shù)據(jù)無法動態(tài)刷新的兩種方法

標簽:泰安 黔西 鷹潭 宜春 河池 保定 武漢 松原

巨人網(wǎng)絡通訊聲明:本文標題《gin使用自定義結(jié)構綁定表單數(shù)據(jù)的示例代碼》,本文關鍵詞  gin,使用,自定義,結(jié)構,綁定,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《gin使用自定義結(jié)構綁定表單數(shù)據(jù)的示例代碼》相關的同類信息!
  • 本頁收集關于gin使用自定義結(jié)構綁定表單數(shù)據(jù)的示例代碼的相關信息資訊供網(wǎng)民參考!
  • 推薦文章