Movatterモバイル変換


[0]ホーム

URL:


  1. Tecnologia Web para desenvolvedores
  2. APIs da Web
  3. EventSource
  4. EventSource()

Esta página foi traduzida do inglês pela comunidade.Saiba mais e junte-se à comunidade MDN Web Docs.

View in EnglishAlways switch to English

EventSource()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨janeiro de 2020⁩.

O construtorEventSource() retorna uma novaEventSource, que representa um recurso remoto.

Sintaxe

eventSource = new EventSource(url, configuration);

Parâmetros

url

UmaUSVString que representa a localização de um recurso remoto servindo os eventos/mensagens.

configurationOptional

Fornece opções para configurar a nova conexão. Os atributos possíveis são:

  • withCredentials, valor padrãofalse, indicando se o CORS deve ser instruído aincluir credenciais.

Exemplos

js
var evtSource = new EventSource("sse.php");var eventList = document.querySelector("ul");evtSource.onmessage = function (e) {  var newElement = document.createElement("li");  newElement.textContent = "message: " + e.data;  eventList.appendChild(newElement);};

Nota:Você pode encontrar um exemplo completo no GitHub — vejaSimple SSE demo using PHP.

Especificações

Specification
HTML
# dom-eventsource-dev

Compatibilidade com navegadores

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp