From d44f630d0cd580bff15e035ef01240ad6c70ff69 Mon Sep 17 00:00:00 2001 From: xin zhao Date: Fri, 20 Jul 2018 19:18:20 +0800 Subject: [PATCH] update 15.3 (#528) --- eBook/15.3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eBook/15.3.md b/eBook/15.3.md index 35a2233ad..783f44147 100644 --- a/eBook/15.3.md +++ b/eBook/15.3.md @@ -139,7 +139,7 @@ go为所有的HTTP状态码定义了常量,比如: http.StatusNotFound = 404 http.StatusInternalServerError = 500 -你可以使用`w.header().Set("Content-Type", "../..")设置头信息 +你可以使用`w.header().Set("Content-Type", "../..")`设置头信息 比如在网页应用发送html字符串的时候,在输出之前执行`w.Header().Set("Content-Type", "text/html")`。