通过Websocket更新Polymer组件?

时间:2014-10-03 10:03:56

标签: javascript sockets polymer

我想找到最简单的方法(最好不依赖于很多额外的库)来连接Polymer组件和Web套接字,以便我可以从后端轻松更新它。

现在我已经调查了使用bacon.js这样做,因为很容易直接从Web套接字设置事件流。我的想法是过滤这些消息并将它们路由到单个Polymer组件。但是,如果没有bacon.js或其他库(即只有Polymer本身和普通的javascript Web套接字)可以很容易地做到这一点,这可能是更好的选择。任何想法,提示或示例代码?

先谢谢

/罗伯特

1 个答案:

答案 0 :(得分:3)

这是使用聚合物处理websocket的一种非常基本的方法

    Polymer({
        is: "ws-element",
        socket: null,
        properties: {
            protocol: {
                type: String
            },
            url: {
                type: String
            }
        },
        ready: function () {
            this.socket = new WebSocket(this.url, this.protocol);
            this.socket.onerror = this.onError.bind(this);
            this.socket.onopen = this.onOpen.bind(this);
            this.socket.onmessage = this.onMessage.bind(this);
        },
        onError: function (error) {
            this.fire('onerror', error);
        },
        onOpen: function (event) {
            this.fire('onopen');
        },
        onMessage: function (event) {
            this.fire('onmessage', event.data);
        },
        send: function (message) {
            this.socket.send(message);
        },
        close: function () {
            this.socket.close();
        }
    })

请查看WebSocket Polymer Element,Polymer元素使用当今大多数现代浏览器附带的本机WebSocket客户端。