我正在尝试使用网络套接字向我的应用程序添加新通知。我正在使用 Backand 作为我的服务器,但似乎无法掌握对新事件的响应。这是我发送事件的服务器端代码:
//Action: Update - After data saved and committed
function backandCallback(userInput, dbRow, parameters, userProfile) {
//Send to array of users
socket.emitUsers("new_notification",userInput, ["admins"]);
return {};
}
我的客户代码接收它:
//Wait for server updates on 'items' object
Backand.on('new_notification', function (data) {
//Get the 'items' object that have changed
console.log(data);
});
但是当我尝试在我的应用程序代码中接收事件时,我从未看到“new_notification”类型的通知。有人可以让我知道发生了什么吗?