只绑定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参数的主要内容,如果未能解决你的问题,请参考以下文章

jQuery高级Ajax

有没有更聪明的方法将布局绑定到片段?

实用代码片段将json数据绑定到html元素 (转)

Kotlin Android Studio - setContenView - 绑定(片段)

[FromBody]与[FromUrl]

26.Qt Quick QML-RotationAnimationPathAnimationSmoothedAnimationBehaviorPauseAnimationSequential(代码片段