技术解析

有谁用过 navigator.share()这个 api?
0
2021-06-02 20:08:09
idczone

Navigator.share https://developer.mozilla.org/zh-CN/docs/Web/API/Navigator/share

if (navigator.canShare && navigator.canShare(大带宽服务器{ files: filesArray })) {
  navigator.share({
    files: filesArray,
    title: 'Pictures',
    text: 'Our Pictures.',
  })
  .then(() => console.log('Share was successful.'))
  .catch((error) => console.log('Sharing failed', error));
} else {
  console.log(`Your system doesn't support sharing files.`);
}

分享 files 的时候,不支持 iOS 和 Mac?有谁深入使用过这个 API,可以交流一下吗?


iOS safari 实验特性里可以开启 web share api

没用过也没苹果设备,但瞄了眼
https://caniuse.com/mdn-api_navigator_canshare
safari 上支持 share 但不支持 canShare
看了下 w3c 的 spec 里面没有提到 canShare ; MDN 内指向 w3c 的链接失效,表示被移到前述的 w3c spec
也就是说 canShare 已经弃了。

认真的人,谢谢啊!

试了几个 chrome 的套壳浏览器,canShare() 总是返回 false,但 share() 是没问题的

谢谢你的经验

数据地带为您的网站提供全球顶级IDC资源
在线咨询
专属客服