提问人:max 提问时间:11/14/2023 最后编辑:Remy Lebeaumax 更新时间:11/14/2023 访问量:16
检查客户端是否未收到消息
Check if the client did not receive the message
问:
我正在建立聊天。
有了 ,我可以知道客户端是否收到了消息,但我不知道如何检查客户端是否没有收到消息。这就是我需要能够定义何时发出通知的内容。send()
- 服务器端:
socket.on(
'send_message',
async (room, message) => {
//some code.
socket.to(room).emit('received_message', message);
return socket.on('message', function (message) {
// here I know, the client received the message.
});
// if ( did_not_receive ) handlePushNotification();
}
);
- 客户端:
socket.on('received_essage', (response) => {
setResponse(response);
socket.send('hi');
});
答: 暂无答案
评论