【Web技术】1091- 跨浏览器窗口 ,7种方式,你还知道几种呢?

414次阅读  |  发布于3年以前

前言

为什么会扯到这个话题,最初是源于听 https://y.qq.com/ QQ音乐,

这里我又联想到了商城的购物车的场景,体验确实有提升。 刚开始,我怀疑的是Web Socket作妖,结果通过分析网络请求和看源码,并没有。最后发现是localStore的storage事件作妖,哈哈。


回归正题,其实在一般正常的知识储备的情况下,我们会想到哪些方案呢?

先抛开如下方式:

  1. 各自对服务器进行轮询或者长轮询
  2. 同源策略下,一方是另一方的 opener

演示和源码

多页面通讯的demo, 为了正常运行,请用最新的chrome浏览器打开。 demo的源码地址[1]

两个浏览器窗口间通信

WebSocket

这个没有太多解释,WebSocket 是 HTML5 开始提供的一种在单个 TCP 连接上进行全双工通讯的协议。当然是有代价的,需要服务器来支持。 js语言,现在比较成熟稳定当然是 socket.io[7]和ws[8]. 也还有轻量级的ClusterWS[9]。

你可以在The WebSocket API (WebSockets)看到更多的关于Web Socket的信息。

定时器 + 客户端存储

定时器:setTimeout/setInterval/requestAnimationFrame 客户端存储:cookie/localStorage/sessionStorage/indexDB/chrome的FileSystem

定时器没啥好说的,关于客户端存储。

postMessage

Cross-document messaging[11] 这玩意的支持率98.9%。好像还能发送文件,哈哈,强大。 不过仔细一看 window.postMessage(),就注定了你首先得拿到window这个对象。也注定他使用的限制, 两个窗体必须建立起联系。常见建立联系的方式:

提到上面的window.open, open后你能获得被打开窗体的句柄,当然也可以直接操作窗体了。


到这里,我觉得一般的前端人员能想到的比较正经的方案应该是上面三种啦。 当然,我们接下来说说可能不是那么常见的另外三种方式。

StorageEvent

Page 1

localStorage.setItem('message',JSON.stringify({
    message: '消息',
    from: 'Page 1',
    date: Date.now()
}))

Page 2

window.addEventListener("storage", function(e) {
    console.log(e.key, e.newValue, e.oldValue)
});

如上, Page 1设置消息, Page 2注册storage事件,就能监听到数据的变化啦。

上面的e就是StorageEvent[12],有下面特有的属性(都是只读):

Broadcast Channel

这玩意主要就是给多窗口用的,Service Woker也可以使用。firefox,chrome, Opera均支持,有时候真的是很讨厌Safari,浏览器支持77%左右。

使用起来也很简单, 创建BroadcastChannel, 然后监听事件。只需要注意一点,渠道名称一致就可以。 Page 1

    var channel = new BroadcastChannel("channel-BroadcastChannel");
    channel.postMessage('Hello, BroadcastChannel!')

Page 2

    var channel = new BroadcastChannel("channel-BroadcastChannel");
    channel.addEventListener("message", function(ev) {
        console.log(ev.data)
    });

SharedWorker

这是Web Worker之后出来的共享的Worker,不通页面可以共享这个Worker。 MDN这里给了一个比较完整的例子simple-shared-worker[13]。

这里来个插曲,Safari有几个版本支持这个特性,后来又不支持啦,还是你Safari,真是6。

虽然,SharedWorker本身的资源是共享的,但是要想达到多页面的互相通讯,那还是要做一些手脚的。先看看MDN给出的例子的ShareWoker本身的代码:

onconnect = function(e) {
  var port = e.ports[0];

  port.onmessage = function(e) {
    var workerResult = 'Result: ' + (e.data[0] * e.data[1]);
    port.postMessage(workerResult);
  }

}

上面的代码其实很简单,port是关键,这个port就是和各个页面通讯的主宰者,既然SharedWorker资源是共享的,那好办,把port存起来就是啦。 看一下,如下改造的代码: SharedWorker就成为一个纯粹的订阅发布者啦,哈哈。

var portList = [];

onconnect = function(e) {
  var port = e.ports[0];
  ensurePorts(port);
  port.onmessage = function(e) {
    var data = e.data;
    disptach(port, data);
  };
  port.start();
};

function ensurePorts(port) {
  if (portList.indexOf(port) < 0) {
    portList.push(port);
  }
}

function disptach(selfPort, data) {
  portList
    .filter(port => selfPort !== port)
    .forEach(port => port.postMessage(data));
}

MessageChannel[14]

Channel Messaging API的 MessageChannel 接口允许我们创建一个新的消息通道,并通过它的两个MessagePort[15] 属性发送数据。

其需要先通过 postMessage先建立联系。

MessageChannel的基本使用:

var channel = new MessageChannel();
var para = document.querySelector('p');

var ifr = document.querySelector('iframe');
var otherWindow = ifr.contentWindow;

ifr.addEventListener("load", iframeLoaded, false);

function iframeLoaded() {
  otherWindow.postMessage('Hello from the main page!', '*', [channel.port2]);
}

channel.port1.onmessage = handleMessage;
function handleMessage(e) {
  para.innerHTML = e.data;
}   

至于在线的例子,MDN官方有一个版本 MessageChannel 通讯[16]

引用

MDN Web Docs - Broadcast Channel[17] BroadcastChannel | Can I Use[18] broadcast-channel[19] StorageEvent[20] SharedWorker[21] simple-shared-worker[22] SharedWorker | Can I Use[23] 共享线程 SharedWorker[24] feature-shared-web-workers[25]两个浏览器窗口间通信总结[26]

参考资料

[1]demo的源码地址: https://github.com/xiangwenhu/page-communication/tree/master/docs

[2]首页: https://xiangwenhu.github.io/page-communication/

[3]setInterval + sessionStorage: https://xiangwenhu.github.io/page-communication/setInterval/index.html

[4]localStorage: https://xiangwenhu.github.io/page-communication/localStorage/index.html

[5]BroadcastChannel: https://xiangwenhu.github.io/page-communication/BroadcastChannel/index.html

[6]SharedWorker: https://xiangwenhu.github.io/page-communication/SharedWorker/index.html

[7]socket.io: https://github.com/socketio/socket.io

[8]ws: https://github.com/websockets/ws

[9]ClusterWS: https://github.com/ClusterWS/ClusterWS

[10]Filesystem & FileWriter API: https://caniuse.com/#search=fileSystem

[11]Cross-document messaging: https://caniuse.com/#search=postMessage

[12]StorageEvent: https://developer.mozilla.org/en-US/docs/Web/API/StorageEvent

[13]simple-shared-worker: https://github.com/mdn/simple-shared-worker

[14]MessageChannel: https://developer.mozilla.org/zh-CN/docs/Web/API/MessageChannel

[15]MessagePort: https://developer.mozilla.org/zh-CN/docs/Web/API/MessagePort

[16]MessageChannel 通讯: https://mdn.github.io/dom-examples/channel-messaging-basic/

[17]MDN Web Docs - Broadcast Channel: https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel

[18]BroadcastChannel | Can I Use: https://caniuse.com/#search=BroadcastChannel

[19]broadcast-channel: https://github.com/pubkey/broadcast-channel

[20]StorageEvent: https://developer.mozilla.org/en-US/docs/Web/API/StorageEvent

[21]SharedWorker: https://developer.mozilla.org/en-US/docs/Web/API/SharedWorker

[22]simple-shared-worker: https://github.com/mdn/simple-shared-worker/blob/gh-pages/worker.js

[23]SharedWorker | Can I Use: https://caniuse.com/#search=SharedWorker

[24]共享线程 SharedWorker: https://blog.csdn.net/qq_38177681/article/details/82048895

[25]feature-shared-web-workers: https://webkit.org/status/#feature-shared-web-workers

[26]两个浏览器窗口间通信总结: https://segmentfault.com/a/1190000016927268

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8