freeCodeCamp/curriculum/challenges/chinese/06-information-security-and.../advanced-node-and-express/handle-a-disconnect.chinese.md

2.2 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
589fc831f9fc0f352b528e76 Handle a Disconnect 2 处理断开连接

Description

提醒一下,这个项目是基于Glitch的以下入门项目构建的,或者是从GitHub克隆的。您可能会注意到,到目前为止,您只增加了用户数。处理用户断开连接就像处理初始连接一样简单,除了区别在于你必须在每个套接字上监听它而不是在整个服务器上监听它。
为此请在现有的连接侦听器中添加一个侦听器该侦听器在没有数据传递的情况下侦听套接字上的“disconnect”。您只需登录用户已断开连接的控制台即可测试此功能。 socket.on('disconnect', () => { /*anything you want to do on disconnect*/ });要确保客户端持续获得当前用户的更新计数您应该在断开连接时将currentUsers减少1然后使用更新的计数发出'user count'事件! 注意
就像'disconnect'一样,套接字可以向服务器发出的所有其他事件应该在我们定义了'socket'的连接监听器中处理。当您认为自己已经做对时,请提交您的页面。

Instructions

Tests

tests:
  - text: 服务器处理与套接字的事件断开连接
    testString: 'getUserInput => $.get(getUserInput("url")+ "/_api/server.js") .then(data => { assert.match(data, /socket.on.*("|")disconnect("|")/gi, ""); }, xhr => { throw new Error(xhr.statusText); })'
  - text: 您的客户正在侦听“用户计数”事件
    testString: 'getUserInput => $.get(getUserInput("url")+ "/public/client.js") .then(data => { assert.match(data, /socket.on.*("|")user count("|")/gi, "Your client should be connection to server with the connection defined as socket"); }, xhr => { throw new Error(xhr.statusText); })'

Challenge Seed

Solution

// solution required