소스 검색

gently close the connection before leaving the page

release/3.x.x
Jan Eggers 7 년 전
부모
커밋
0e0fcabc04
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      Tests/MQTTnet.TestApp.AspNetCore2/wwwroot/app/app.ts

+ 5
- 1
Tests/MQTTnet.TestApp.AspNetCore2/wwwroot/app/app.ts 파일 보기

@@ -13,4 +13,8 @@ client.on('connect', () => {
client.on('message', (topic, message) => {
// message is Buffer
console.log(message.toString());
})
});

window.onbeforeunload = () => {
client.end();
};

불러오는 중...
취소
저장