看了文档反倒不会用了
从服务器发消息给房间
比如这里 这个地方是一个新类吗?不可能在页面用ajax调用把
从服务器发消息给房间
通过ioc注入上述的MyWebsocket
@Inject
protected MyWebsocket myWebsocket;
public void sayhi(String room) {
myWebsocket.each(room, new Each<Session>() {
public void invoke(int index, Session ele, int length) {
myWebsocket.sendJson(ele.getId(), new NutMap("action", "layer").setv("msg", "hi"));
}
});
}