最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

golanghtml/template_html/css

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 16:12:46
文檔

golanghtml/template_html/css

golanghtml/template_html/css_WEB-ITnose:template包(html/template)實(shí)現(xiàn)了數(shù)據(jù)驅(qū)動的模板,用于生成可對抗代碼注入的安全HTML輸出。本包提供了和text/template包相同的接口,無論何時當(dāng)輸出是HTML的時候都應(yīng)使用本包。 main.go package mainimport ( html/temp
推薦度:
導(dǎo)讀golanghtml/template_html/css_WEB-ITnose:template包(html/template)實(shí)現(xiàn)了數(shù)據(jù)驅(qū)動的模板,用于生成可對抗代碼注入的安全HTML輸出。本包提供了和text/template包相同的接口,無論何時當(dāng)輸出是HTML的時候都應(yīng)使用本包。 main.go package mainimport ( html/temp

template包(html/template)實(shí)現(xiàn)了數(shù)據(jù)驅(qū)動的模板,用于生成可對抗代碼注入的安全HTML輸出。本包提供了和text/template包相同的接口,無論何時當(dāng)輸出是HTML的時候都應(yīng)使用本包。

main.go

package mainimport (	"html/template"	"io/ioutil"	"os"	"time"	"fmt")func main() {	t := template.New("第一個模板").Delims("[[", "]]") //創(chuàng)建一個模板,設(shè)置模板邊界	t, _ = t.Parse("hello,[[.UserName]]\n") //解析模板文件	data := map[string]interface{}{"UserName": template.HTML("
輸出到控制臺 t2 := template.New("新的模板") //創(chuàng)建模板 t2.Funcs(map[string]interface{}{"tihuan": tihuan}) //向模板中注入函數(shù) bytes, _ := ioutil.ReadFile("test2.html") //讀文件 template.Must(t2.Parse(string(bytes))) //將字符串讀作模板 t2.Execute(os.Stdout, map[string]interface{}{"UserName": "你好世界"}) fmt.Println("\n", t2.Name(), "\n") t3, _ := template.ParseFiles("test1.html") //將一個文件讀作模板 t3.Execute(os.Stdout, data) fmt.Println(t3.Name(), "\n") //模板名稱 t4, _ := template.ParseGlob("test1.html") //將一個文件讀作模板 t4.Execute(os.Stdout, data) fmt.Println(t4.Name())}//注入模板的函數(shù)func tihuan(str string) string { return str + "-------" + time.Now().Format("2006-01-02")}



test1.html
	templatehello {{.UserName}}



test2.html
	templatehello {{.UserName}}
{{tihuan .UserName}}




聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

golanghtml/template_html/css

golanghtml/template_html/css_WEB-ITnose:template包(html/template)實(shí)現(xiàn)了數(shù)據(jù)驅(qū)動的模板,用于生成可對抗代碼注入的安全HTML輸出。本包提供了和text/template包相同的接口,無論何時當(dāng)輸出是HTML的時候都應(yīng)使用本包。 main.go package mainimport ( html/temp
推薦度:
標(biāo)簽: html go css
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top