gpt4 book ai didi

javascript - nowjs 中区分两个客户端

转载 作者:太空宇宙 更新时间:2023-11-04 01:16:00 25 4
gpt4 key购买 nike

我正在为我的网络应用程序使用 nowjs。我如何区分两个客户。

我尝试使用 req.session 并在主 app.js 文件中使用全局变量。但我还没有成功地实现我所需要的。

我的主要目标是分别处理这两个客户 - 一个作为主持人,另一个作为观众。最佳的实现方式是什么。

我遵循的基本框架如下(如文档中所述)

everyone.now.sendToServer = function(parameter){
everyone.now.recieveFromServer(parameter);
}

因此,如果一个人更新,其他人都会收到更新。

但我需要的是。我想区分更新者和更新接收者。

最佳答案

我不确定我是否完全理解您的问题,但您可以通过几种不同的方式区分客户:

  • 使用 this.now 对象

(this.now is a special version of the now object that points to one particular user. It is available in the body of functions defined on the server.)

  • 使用群组功能,

(Groups behave exactly the same as everyone above, but acts on a subset of all connected users.)

  • 获取用户的客户端 ID

(The nowjs.getClient(clientId, func) allows you to address one specific client directly, when you know its clientId.)

以下是文档:http://nowjs.com/doc/nowjs

关于javascript - nowjs 中区分两个客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8661050/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com