Go 템플릿 함수가 HTML을 출력할 때 "ZgotmplZ"가 예기치 않게 나타날 수 있습니다. 이 독특한 값은 런타임 중에 CSS 또는 URL 컨텍스트 내에 안전하지 않은 콘텐츠가 있음을 나타냅니다.
"ZgotmplZ"는 잠재적으로 위험한 원시 데이터가 CSS 또는 URL에 잘못 입력되었음을 나타냅니다. 문맥. 이 문제를 해결하려면 템플릿의 funcMap에 safe 및 attr 함수를 추가해야 합니다. 이러한 함수는 데이터를 각각 안전한 HTML 및 HTML 속성으로 변환합니다.
package main import ( "html/template" "os" ) func main() { funcMap := template.FuncMap{ "attr": func(s string) template.HTMLAttr { return template.HTMLAttr(s) }, "safe": func(s string) template.HTML { return template.HTML(s) }, } template.Must(template.New("Template").Funcs(funcMap).Parse(` <option {{.attr | attr}}>>test</option> {{.html | safe}} `)).Execute(os.Stdout, map[string]string{ "attr": `selected="selected"`, "html": `<option selected="selected">test</option>`, }) }
이 수정된 코드는 원하는 출력을 생성합니다.
<option selected="selected">test</option> <option selected="selected">test</option>
개발자는 문자열을 template.CSS와 같은 다른 HTML 안전 유형으로 변환할 수 있는 추가 함수를 정의하도록 선택할 수 있습니다. template.JS, template.JSStr 및 template.URL.
위 내용은 My Go HTML 템플릿에 'ZgotmplZ'가 나타나는 이유는 무엇이며 어떻게 해결할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!