Thanks a lot Brian for the detailed information. So basically, my mistake 
is I was using the event/stream handler for text/html and expecting the 
output. Actually, I have to make a separate handler for event stream and 
use javascript for updating the data. 

I was thinking that templates can be used for dynamic updates. But actually 
they are static and once they are loaded then any update, within some 
section of the page(like ajax), can be done using JS through a separate 
handler. However, if we are ok to refresh the whole page then we can call 
the same template handler again. 

Thank you very very much for great help. 

On Wednesday, 17 June 2020 00:16:39 UTC+5:30, Brian Candler wrote:
>
> text/event-stream is not text/html.  text/event-stream is exactly that: a 
> stream of (plain text) messages.  If you point a browser directly at this 
> URL, it will render the stream as plain text.
>
> If you want pretty rendering, what you need is a wrapper HTML page which 
> contains some Javascript to read the event stream and insert the events 
> into your HTML page as they arrive.
>
> The concepts aren't Go-specific, so any page that talks about event stream 
> (aka "server-sent events" or "eventsource") should help you.  Here are the 
> first few I found:
>
> https://www.html5rocks.com/en/tutorials/eventsource/basics/
>
> https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events
> https://www.w3schools.com/html/html5_serversentevents.asp
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/ab97e0ed-17f8-4444-870c-0a50c6805b1ao%40googlegroups.com.

Reply via email to