Не можете отправить сообщение в приложении чата с сокетами? - PullRequest
0 голосов
/ 17 ноября 2018

Я пытаюсь отправить сообщение через мое приложение, но я всегда получаю эту ошибку в heroku.Вот ошибка:

enter image description here

, а вот код API: https://github.com/devslopes-learn/mac-chat-api

фрагмент кода API:

    client.on('newMessage', function(messageBody, userId, channelId, userName, userAvatar, userAvatarColor) {
    //Create message

    console.log(messageBody);

    let newMessage = new Message({
    messageBody: messageBody,
    userId: userId,
    channelId: channelId,
    userName: userName,
    userAvatar: userAvatar,
    userAvatarColor: userAvatarColor
  });
    //Save it to database
    newMessage.save(function(msg){
      //Send message to those connected in the room
      console.log('new message sent');

      io.emit("messageCreated",  newMessage.messageBody, newMessage.userId, newMessage.channelId, newMessage.userName, newMessage.userAvatar, newMessage.userAvatarColor, newMessage.id, newMessage.timeStamp);
    });
  });
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...