15.4 写一个简单的网页应用
示例 15.10 simple_webserver.go
更安全的做法是在处理函数中,在写入返回内容之前将头部的 content-type
设置为 text/html
:w.Header().Set("Content-Type", "text/html")
。
练习 15.6
示例 15.10 simple_webserver.go
更安全的做法是在处理函数中,在写入返回内容之前将头部的 content-type
设置为 text/html
:w.Header().Set("Content-Type", "text/html")
。
练习 15.6
本文档使用 全库网 构建