您想要使用以下方式存取儲存在映射中的結構體字段Go 中的html/template 套件。
預設的 Go 範本不允許存取結構體的未匯出欄位。要啟用此功能,您需要透過大寫欄位名稱的第一個字母來匯出欄位。
使用匯出欄位定義結構:
<code class="go">type Task struct { cmd string args []string Desc string // Note the capital "D" }</code>
使用匯出的結構初始化對應:
<code class="go">var taskMap = map[string]Task{ "find": Task{ cmd: "find", args: []string{"/tmp/"}, Desc: "find files in /tmp dir", }, "grep": Task{ cmd: "grep", args:[]string{"foo","/tmp/*", "-R"}, Desc: "grep files match having foo", }, }</code>
使用匯出的結構初始化對應:
<code class="go">func listHandle(w http.ResponseWriter, r *http.Request) { t, _ := template.ParseFiles("index.tmpl") t.Execute(w, taskMap) }</code>
使用匯出的結構初始化對應>
解析並執行範本:<code class="go"><html> {{range $key, $value := .}} <li>Task Name: {{$key}}</li> <li>Task Value: {{$value}}</li> <li>Task description: {{$value.Desc}}</li> {{end}} </html></code>
<code class="html"><html> <li>Task Name: find</li> <li>Task Value: {find [/tmp/] find files in /tmp dir}</li> <li>Task description: find files in /tmp dir</li> <li>Task Name: grep</li> <li>Task Value: {grep [foo /tmp/* -R] grep files match having foo}</li> <li>Task description: grep files match having foo</li> </html></code>
以上是當欄位未匯出時,如何在 Go 中存取 HTML 範本中的結構體欄位?的詳細內容。更多資訊請關注PHP中文網其他相關文章!