angular - How to act on callback function -


i have script connects server using websocket

export class appcomponent {    connection_status = false;   message = '';    public connect() {     this.socket = io('http://localhost:5001');     this.socket.on('connected', this.connection_established);   } } 

i change connection_status variable when connected message received , save content of message message variable.

export class appcomponent {    connection_status = false;   message = '';    public connect() {     this.socket = io('http://localhost:5001');     this.socket.on('connected', this.connection_established.bind(this));   }    connection_established() {     this.connection_established = true;     this.message = 'connected';   } } 

Comments

Popular posts from this blog

python - Best design pattern for collection of objects -

go - serving up pdfs using golang -

python - django admin: changing the way a field (w/ relationship to another model) is submitted on a form so that it can be submitted multiple times -