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,可以交流一下吗?
1
wheelg 2021-05-13 14:28:36 +08:00
iOS safari 实验特性里可以开启 web share api
|
2
no1xsyzy 2021-05-13 15:11:44 +08:00
没用过也没苹果设备,但瞄了眼
https://caniuse.com/mdn-api_navigator_canshare safari 上支持 share 但不支持 canShare 看了下 w3c 的 spec 里面没有提到 canShare ; MDN 内指向 w3c 的链接失效,表示被移到前述的 w3c spec 也就是说 canShare 已经弃了。 |
4
ragnaroks 2021-05-13 23:35:17 +08:00
试了几个 chrome 的套壳浏览器,canShare() 总是返回 false,但 share() 是没问题的
|