Files
the-way-to-go_ZH_CN/eBook/18.9.md
songleo bc390fa872 modified: eBook/18.11.md
modified:   eBook/18.5.md
	modified:   eBook/18.6.md
	modified:   eBook/18.8.md
	modified:   eBook/18.9.md
2016-01-03 22:45:20 +08:00

21 lines
536 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 18.9 网络和网页应用
## 18.9.1 模板:
制作、解析并使模板生效:
```go
var strTempl = template.Must(template.New("TName").Parse(strTemplateHTML))
```
在网页应用中使用HTML过滤器过滤HTML特殊字符
`{{html .}}` 或者通过一个字段 `FieldName {{ .FieldName |html }}`
使用缓存模板(参考[章节15.7](15.7.md)
## 链接
- [目录](directory.md)
- 上一节:[协程goroutine与通道channel](18.8.md)
- 下一节:[其他](18.10.md)