-1

I'm using Go HTML templates and when you run this function it sends the data to the client, but I would like to store that data in a variable and send it to the client later. How can this be achieved?

func (t *Template) ExecuteTemplate(wr io.Writer, name string, data any) error

This is for use in an AJAX response. I know on the client side I could simply parse the xhr.responseText, but I need to send some other variables with it.

hermancain
  • 1,452
  • 2
  • 18
  • 24

1 Answers1

2

Use a buffer:

buf:=bytes.Buffer{}
t.ExecuteTemplate(&buf,"name",data)

Then you can use buf.Bytes(), or buf.String().

Burak Serdar
  • 46,455
  • 3
  • 40
  • 59