15.4 写一个简单的网页应用

    示例 15.10 simple_webserver.go

    更安全的做法是在处理函数中,在写入返回内容之前将头部的 content-type 设置为 text/htmlw.Header().Set("Content-Type", "text/html")

    练习 15.6