Websocket消息到特定房间 - Golang Kataras / Iris

时间:2017-09-18 03:39:22

标签: javascript go websocket

我正在尝试向特定房间发送消息,但它不起作用,它向所有房间发送消息,同时我的消息从我的名字和第一个聊天室用户名收到两次。 1间客房的留言将播放至所有聊天室。

我在这里使用了示例代码 - https://github.com/kataras/iris/blob/master/_examples/websocket/secure/main.go。和 https://github.com/kataras/iris/blob/master/_examples/websocket/native-messages/main.go

以下是我正在使用的代码,它给了我错误:

        var myChatRoom = strconv.Itoa(room.ID)
        ws := websocket.New(websocket.Config{})
        ws.OnConnection(func(c websocket.Connection) {
            c.Join(myChatRoom)
            c.To(myChatRoom).EmitMessage([]byte(user.(users).Username + " has Joined Chat!"))
            c.OnMessage(func(data []byte) {
                message := string(data)
                if message == "leave" {
                    c.Leave(myChatRoom)
                    c.To(myChatRoom).EmitMessage([]byte(user.(users).Username + " has Left Chat!"))
                    return
                }
                c.To(myChatRoom).EmitMessage([]byte(user.(users).Username + ": " + message))
            })
            c.OnDisconnect(func() {
                fmt.Printf("Connection with ID: %s has been disconnected!\n", c.ID())
            })
        })

HTML代码:

<div id="messages" style="border-width: 1px; border-style: solid; height: 200px;overflow:auto"></div>
    <input type="text" id="messageTxt" />
    <button type="button" id="sendBtn">Send</button>

Javascript代码:

<script>
  var messageTxt;
  var messages;
  var HOST = 'localhost'
  jQuery(function() {
    messageTxt = jQuery("#messageTxt");
    messages = jQuery("#messages");
    w = new WebSocket("ws://" + HOST + "/my_endpoint");
    w.onopen = function() {
      console.log("Websocket connection enstablished");
    };
    w.onclose = function() {
      appendMessage(jQuery("<div><center><h3>Disconnected</h3></center></div>"));
    };
    w.onmessage = function(message) {
      console.log("Message Appended: " + message)
      appendMessage(jQuery("<div>" + message.data + "</div>"));
    };
    jQuery("#sendBtn").click(function() {
      w.send(messageTxt.val().toString());
      messageTxt.val("");
    });
  })

  function appendMessage(messageDiv) {
    messageDiv.appendTo(jQuery("#messages"));
  }
</script>

错误:

  1. 它向所有ROOM发送消息,而不是特定的房间。

  2. 首先创建房间的用户自动加入所有房间

  3. 在其他房间发送消息的人看到他们的消息被“FirstUser”在他们的房间里重复/克隆,他们在聊天中创建了第一个房间。 (无论他是否是聊天组的成员)

  4. 期待:

    1. 人们只能向他们加入的房间发送/接收消息。

    2. 第一位用户不能自动加入CHATRoom。

    3. 人们不应该看到他们的消息再次以“FirstUser”名称重复。

1 个答案:

答案 0 :(得分:1)

这是一个很小的错误,已修复。请升级:

go get -u github.com/kataras/iris

新版本&#34; v10.6.3&#34;也被推了。

非常感谢@Belarus,你很棒!

此致

Gerasimos Maropoulos, Iris Web框架的作者。