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