go语言html截图,Go语言HTML模板的使用

Go语言HTML模板的使用

使用Parse

package main

import (

"html/template"

"net/http"

)

func SayHello(w http.ResponseWriter, req *http.Request) {

name := "克莱普斯"

tmpl, _ := template.New("TXT").Parse("大家好,我是{{.}}")

tmpl.Execute(w, name)

}

func main() {

http.HandleFunc("/", SayHello)

http.ListenAndServe(":80", nil)

}

使用ParseFiles

go代码

package main

import (

"html/template"

"net/http"

)

type Info struct {

Title string

Name string

Site string

}

func SayHello(w http.ResponseWriter, req *http.Request) {

info := Info{"个人网站", "克莱普斯", "http://www.sample.com/"}

tmpl, _ := template.ParseFiles("home.html")

tmpl.Execute(w, info)

}

func main() {

http.HandleFunc("/", SayHello)

http.ListenAndServe(":80", nil)

}

home.html代码

{{.Title}}

大家好,我是{{.Name}}。这是我的网站{{.Site}}

让模板不转义HTML标签

template.HTML(x) //x这里是string

本文由 创作,采用 知识共享署名4.0 国际许可协议进行许可。本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名。最后编辑时间为:

2020/08/08 12:11

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值