mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2025-09-12 14:42:01 +00:00
good good study, day day up!
This commit is contained in:
30
vendor/gopl.io/ch4/autoescape/main.go
generated
vendored
Normal file
30
vendor/gopl.io/ch4/autoescape/main.go
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
// Copyright © 2016 Alan A. A. Donovan & Brian W. Kernighan.
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
|
||||
// See page 117.
|
||||
|
||||
// Autoescape demonstrates automatic HTML escaping in html/template.
|
||||
package main
|
||||
|
||||
import (
|
||||
"html/template"
|
||||
"log"
|
||||
"os"
|
||||
)
|
||||
|
||||
//!+
|
||||
func main() {
|
||||
const templ = `<p>A: {{.A}}</p><p>B: {{.B}}</p>`
|
||||
t := template.Must(template.New("escape").Parse(templ))
|
||||
var data struct {
|
||||
A string // untrusted plain text
|
||||
B template.HTML // trusted HTML
|
||||
}
|
||||
data.A = "<b>Hello!</b>"
|
||||
data.B = "<b>Hello!</b>"
|
||||
if err := t.Execute(os.Stdout, data); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
||||
//!-
|
Reference in New Issue
Block a user