When displaying a webpage through the use of html templates in Google App Engine Go application, does the passed data and/or raw template ever leave the App Engine, or just the final html output? For example, if I have a class
type Foo struct{
Public string
Secret string
}
and a template that only uses {{.Public}}
argument, does the {{.Secret}}
argument ever leave the App? Similarly, if there is a template that displays some special data if the {{.Secret}}
argument is present through the use of {{if .Secret}}...{{end}}
, is there any way to access that part of the html in any way when the {{.Secret}}
argument is not present?