Files
the-way-to-go_ZH_CN/eBook/18.9.md
Haigang Zhou fa1cfcc67f 第十七十八章 (#833)
Co-authored-by: Joe Chen <jc@unknwon.io>
2022-05-19 19:57:23 +08:00

23 lines
543 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)