“JS Socket.EMIT” Kod odpowiedzi

socket.io Klient wysyła węzeł danych JS Server

var socket = io.connect('http://localhost');
socket.emit('my other event', { my: 'data' });
//server side
io.sockets.on('connection', function (socket) {
  socket.on('my other event', function (data) {
    console.log(data);
  });
});
//sending data from the user via a socket.io
socket.on("test", function (data) {
    data.forEach(obj => {
        console.log("Yer : " + obj.yer + ", Lat : " + obj.lat + ", Long : " + obj.lng);
    })
});
Xenophobic Xenomorph

skrypt io gniazdo

<script src="/socket.io/socket.io.js"></script>
<script>
  const socket = io();
</script>
garzj

JS Socket.EMIT

const socket = io('ws://localhost:3000');
socket.on('connect', () => {  
  // either with send()  
  socket.send('Hello!');
  // or with emit() and custom event names  
  socket.emit('salutations', 'Hello!', { 'mr': 'john' }, Uint8Array.from([1, 2, 3, 4]));});
// handle the event sent with socket.send()
socket.on('message', data => {
  console.log(data);
});
// handle the event sent with socket.emit()
socket.on('greetings', (elem1, elem2, elem3) => {
  console.log(elem1, elem2, elem3);
});
Hilarious Hoopoe

Odpowiedzi podobne do “JS Socket.EMIT”

Pytania podobne do “JS Socket.EMIT”

Więcej pokrewnych odpowiedzi na “JS Socket.EMIT” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu