Go AppEngine:具有自動重新載入功能的分層範本
問題:
問題:問題:
問題:
問題:問我如何建構Go AppEngine應用程式中的範本實作:
|-- app.yaml |-- app | +-- http.go |-- templates | +-- base.html +-- github.com +-- storeski +-- appengine +-- products | +-- http.go | +-- templates | |-- list.html | +-- detail.html +-- account |-- http.go +-- templates |-- overview.html |-- notifications.html
func watchTemplates() { ticker := time.NewTicker(1 * time.Second) for range ticker.C { if err := parseTemplates(); err != nil { log.Printf("Error parsing templates: %v", err) } } }
以上是如何在 Go App Engine 中實作自動重新載入的分層範本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!