उदाहरण के लिए, मैं एक स्रोत फ़ाइल में पाठ / टेम्पलेट और HTML / टेम्पलेट दोनों का उपयोग करना चाहता हूं। लेकिन नीचे दिए गए कोड त्रुटियों को फेंक देते हैं।
import (
"fmt"
"net/http"
"text/template" // template redeclared as imported package name
"html/template" // template redeclared as imported package name
)
func handler_html(w http.ResponseWriter, r *http.Request) {
t_html, err := html.template.New("foo").Parse(`{{define "T"}}Hello, {{.}}!{{end}}`)
t_text, err := text.template.New("foo").Parse(`{{define "T"}}Hello, {{.}}!{{end}}`)
}
require
औरimport
बयानों की स्पष्टता के साथ पकड़ लिया , बस मैंने देखी गई किसी भी अन्य भाषाओं की तुलना में बहुत बेहतर है