Cosmetic changes in render
This commit is contained in:
+3
-1
@@ -10,10 +10,12 @@ type String struct {
|
||||
Data []interface{}
|
||||
}
|
||||
|
||||
const plainContentType = "text/plain; charset=utf-8"
|
||||
|
||||
func (r String) Write(w http.ResponseWriter) error {
|
||||
header := w.Header()
|
||||
if _, exist := header["Content-Type"]; !exist {
|
||||
header.Set("Content-Type", "text/plain; charset=utf-8")
|
||||
header.Set("Content-Type", plainContentType)
|
||||
}
|
||||
if len(r.Data) > 0 {
|
||||
fmt.Fprintf(w, r.Format, r.Data...)
|
||||
|
||||
Reference in New Issue
Block a user