mirror of https://github.com/gin-gonic/gin.git
Updates HTML render
This commit is contained in:
parent
4430610795
commit
a21cc8dd3d
|
@ -59,5 +59,9 @@ func (r HTMLDebug) loadTemplate() *template.Template {
|
||||||
|
|
||||||
func (r HTML) Write(w http.ResponseWriter) error {
|
func (r HTML) Write(w http.ResponseWriter) error {
|
||||||
w.Header()["Content-Type"] = htmlContentType
|
w.Header()["Content-Type"] = htmlContentType
|
||||||
return r.Template.ExecuteTemplate(w, r.Name, r.Data)
|
if len(r.Name) == 0 {
|
||||||
|
return r.Template.Execute(w, r.Data)
|
||||||
|
} else {
|
||||||
|
return r.Template.ExecuteTemplate(w, r.Name, r.Data)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue