[Go] gin框架渲染html字符串
2021-02-03 20:13
标签:形式 文档 外部 ring code 外部文件 har str charset 在文档里有直接渲染一个html的文件 , 但是我的需求是渲染html的字符串 , 因为我的html要打包进二进制 , 不能只是外部文件的形式 我的controller包里 FileGetcontent方法里返回的是一个html字符串 [Go] gin框架渲染html字符串 标签:形式 文档 外部 ring code 外部文件 har str charset 原文地址:https://www.cnblogs.com/taoshihan/p/13154307.html engine := gin.Default()
//登陆界面
engine.GET("/login",controller.PageLogin)
engine.Run(":8080")
//登陆界面
func PageLogin(c *gin.Context){
html := tools.FileGetContent("html/login.html")
c.Header("Content-Type", "text/html; charset=utf-8")
c.String(200, html)
}
文章标题:[Go] gin框架渲染html字符串
文章链接:http://soscw.com/index.php/essay/50564.html