gpt4 book ai didi

javascript - 如何使用SignalR向特定用户发送数据?

转载 作者:行者123 更新时间:2023-12-04 21:01:45 25 4
gpt4 key购买 nike

我有一个通过 SignalR 接收消息的客户端。它工作得很好,但更像是广播。我希望能够向特定客户发送消息。在客户端,我有一个 userId,我像这样设置连接:

const userId = getUserId();

if (userId) {
const beacon = new signalR.HubConnectionBuilder()
.withUrl(`${URL}/api?userId=${userId}"`)
.build();

beacon.on('newMessage', notification => console.log);
beacon.start().catch(console.error);
}
};

在服务器端(用 JavaScript 编写的 Azure 函数),我有一条消息和一个 userId。我的问题是服务器如何知道哪个 SignalR 连接将发送给该​​特定用户?我能以某种方式告诉 SignalR 我是谁吗?

最佳答案

使用 Azure SignalR 服务和问题中的客户端代码,我能够让它工作。我使用以下 Azure 函数来协商连接:

module.exports = async function (context, req, connectionInfo) {
context.res.body = connectionInfo;
context.done();
};
<小时/>
{
"disabled": false,
"bindings": [
{
"authLevel": "anonymous",
"type": "httpTrigger",
"direction": "in",
"name": "req"
},
{
"type": "http",
"direction": "out",
"name": "res"
},
{
"type": "signalRConnectionInfo",
"name": "connectionInfo",
"userId": "{userId}", // <----- IMPORTANT PART!
"hubName": "chat",
"direction": "in"
}
]
}

以及另一个向特定用户发送消息的函数:

module.exports = async function (context, req) {
const messageObject = req.body;
return {
"target": "newMessage",
"userId": messageObject.userId,
"arguments": [ messageObject.message]
};
};
<小时/>
{
"disabled": false,
"bindings": [
{
"authLevel": "anonymous",
"type": "httpTrigger",
"direction": "in",
"name": "req",
"methods": [
"post"
]
},
{
"type": "http",
"direction": "out",
"name": "res"
},
{
"type": "signalR",
"name": "$return",
"hubName": "chat",
"direction": "out"
}
]
}

关于javascript - 如何使用SignalR向特定用户发送数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58630559/

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