只绑定Get参数
Posted yzg-14
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了只绑定Get参数相关的知识,希望对你有一定的参考价值。
ShouldBindQuery
函数只绑定Get参数,不绑定post数据
package main import ( "log" "github.com/gin-gonic/gin" ) type Person struct { Name string `form:"name"` Address string `form:"address"` } func main() { route := gin.Default() route.Any("/testing", startPage) route.Run(":8085") } func startPage(c *gin.Context) { var person Person if c.ShouldBindQuery(&person) == nil { log.Println("====== Only Bind By Query String ======") log.Println(person.Name) log.Println(person.Address) } c.String(200, "Success") }
以上是关于只绑定Get参数的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin Android Studio - setContenView - 绑定(片段)
26.Qt Quick QML-RotationAnimationPathAnimationSmoothedAnimationBehaviorPauseAnimationSequential(代码片段