"HTML5" Server-sent server sends events

Source: Internet
Author: User

Server-sent Event-one-way message delivery

The Server-sent event refers to a webpage that automatically obtains updates from the server.

This could have been done before, provided the Web page had to ask if there were any updates available. Events are sent through the server, and updates are automatically reached.

<!DOCTYPE HTML><HTML><Body><H1>Get Server Updates</H1><DivID= "Result"></Div><Script>if(typeof(EventSource)!=="undefined")  {  varSource=NewEventSource ("/example/html5/demo_sse.php"); Source.onmessage=function(event) {document.getElementById ("result"). InnerHTML+=Event.data+ "<br/>";  }; }Else{document.getElementById ("result"). InnerHTML="Sorry, your browser does not support Server-sent events ..."; }</Script></Body></HTML>
    • Create a new EventSource object, and then specify the URL of the page that is sending the update ("demo_sse.php" in this case)
    • OnMessage event occurs every time an update is received
    • When the OnMessage event occurs, the received data is pushed into the element with the ID "result"
EventSource Object
Events Description
OnOpen When the connection to the server is opened
OnMessage When a message is received
OnError When an error occurs

"HTML5" Server-sent server sends events

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.