gin(6)-模板渲染

在golang中模板渲染已经简单到极致了

首先看下项目目录

`java0904@weigongdeMacBook-Pro templates % tree
.
├── html
│   └── index.html
└── main.go` 

代码部分

package main

import "github.com/gin-gonic/gin"

func main() {
    engine := gin.Default()
    engine.LoadHTMLGlob("html/*")
    engine.GET("/index", func(context *gin.Context) {
        context.HTML(200, "index.html", gin.H{
            "title": "golang",
        })
    })
    _ = engine.Run()
}

index.html

`


    
    index


{{.title}} 你好

`

访问http://localhost:8080/index

java0904@weigongdeMacBook-Pro templates % curl http://localhost:8080/index



    
    index


golang 你好

%

本文转自:SDK社区(sdk.cn)是一个中立的社区,这里有多样的前端知识,有丰富的api,有爱学习的人工智能开发者,有风趣幽默的开发者带你学python,还有未来火热的鸿蒙,当各种元素组合在一起,让我们一起脑洞大开共同打造专业、好玩、有价值的开发者社区,帮助开发者实现自我价值!

你可能感兴趣的:(golang)