1、需求是每次页面显示时都执行某些操作:
可以使用onShow方法。onShow在每次页面显示的时候都会被触发,不论是第一次显示还是从其他页面返回后的显示在,例如
onShow(){
if (globalThis.websocket === undefined || globalThis.websocket === null){
globalThis.websocket = new WebSocket("ws://localhost:8080/websocket/"+user.state.userid);
}
globalThis.websocket.onmessage = this.webSocketOnMessage;
},