我在使用SocketCluster作为其发布/订阅的 websocket API 的客户端。
身份验证后,我通过每秒接收一次 json 数据
SCsocket.on('authenticate', function(){
var channel = SCsocket.subscribe('channel1');
channel.watch(function(data){
console.log(data);
});
});
形式的
[
{
"product": "Product1",
"price": "10.0"
},
{
"product": "Product2",
"price": "15.0"
}
]
我不会打印数据,而是将其保存到 mongo db。
如果某些数据无法上传,我需要某种安全网。回想起来,允许我将数据从 websocket 上传到 mongo db 的东西。
这样做的最佳做法是什么?我希望这个问题不会太宽泛,我是 node 和 mongo db 的新手。
谢谢!