PWA:使Web共享在development / localhost中工作

问题描述 投票:0回答:2

自从Google Chrome和Firefox does not support Web Share yet起,我需要一些替代方法来在开发中进行测试。

通过this example实现共享:

if (navigator.share) {
  navigator.share({
    title: 'web.dev',
    text: 'Check out web.dev.',
    url: 'https://web.dev/',
  })
    .then(() => console.log('Successful share'))
    .catch((error) => console.log('Error sharing', error));
} else {
  console.warn('Cannot share in this browser')
}

哪个将登录任何不受支持的浏览器:

Cannot share in this browser

关于如何使它适用于发展的任何想法?

javascript vue.js nuxt.js progressive-web-apps
2个回答
1
投票

[大多数台式机浏览器不support Web Share API。目前,Chrome浏览器不是这样的。


0
投票

[http://localhostconsidered a secure context…或您可以只在本地开发环境中设置HTTPS。

© www.soinside.com 2019 - 2024. All rights reserved.