main.go
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18package main import ( "github.com/xiuno/gin" "net/http" ) func main() { r := gin.Default() r.LoadHTMLGlob("view/*") r.GET("/", func(c *gin.Context) { c.HTML(http.StatusOK, "index.html", gin.H{ "title": "hello Go", }) }) r.Run() }
view/index.html
复制代码
1
2
3
4
5
6
7
8
9
10
11<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>{{ .title }}</title> </head> <body> <h1>{{ .title }}</h1> </body> </html>
最后
以上就是优美枕头最近收集整理的关于go gin 渲染HTML 仅做记录的全部内容,更多相关go内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复