1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| package main
import ( "net/http"
"github.com/gin-gonic/gin" )
func main() { gin.SetMode(gin.ReleaseMode) router := gin.New() router.LoadHTMLGlob("templates/*") // 注册static下静态文件目录,“.”表示全部文件 router.StaticFS("/static", http.Dir(".")) router.Use(gin.Logger()) router.GET("/index", func(c *gin.Context) { c.HTML(http.StatusOK, "index.html", gin.H{ "title1": "gaga", }) }) router.Run(":8080") }
|