摘要:
package main import ( "github.com/gin-gonic/gin" "net/http" ) func main() { r := gin.Default() // 参数是通过get url ? 后面是 query string r.GET("/query", func 阅读全文
摘要:
package main import ( "github.com/gin-gonic/gin" "net/http" ) type UserInfo struct { Message string Name string Age int } type Student struct { Name s 阅读全文