Troubleshooting
服务使用中可能出现的错误及解决方法
1. 创建频道时出现“无法确认地址”错误
2. 无法上传
3. 收到所有消息
nc.bind('onMessageReceived',function(channel, message) {
// 当加入多个频道时,所有频道的消息都会接收到这里。
// 需要通过 channel 来区分展示给客户的频道。
if(channel == current_channel) {
console.log(message);
}
});Last updated