摘要:
和gin响应json数据差不多,代码如下: package main import "github.com/gin-gonic/gin" func _html(c *gin.Context) { c.HTML(200, "index.html", gin.H{"username": "Evan"}) 阅读全文
摘要:
先不用管代码为什么这么写,先照着代码敲: package main import "github.com/gin-gonic/gin" func _json(c *gin.Context) { type UserInfo struct { UserName string `json:"user_na 阅读全文