admin管理员组文章数量:1351169
I have tried navigator.canshare also but it's working in chrome desktop. It is giving undefined.
if (navigator.share) {
navigator.share({
title: 'Lot Quality Report',
text: 'Lot Link -',
url: ''
})
.then(() => console.log('Successful share')) //this is for sucess
.catch((error) => console.log('Error sharing', error));
} else {
console.log('Share not supported on this browser, do it the old way.');
alert('Share not supported on this browser, do it the old way.');
}
This code is not working on google chrome desktop in mac os. Any alternative I can use to run share functionality on google chrome desktop.
I have tried navigator.canshare also but it's working in chrome desktop. It is giving undefined.
if (navigator.share) {
navigator.share({
title: 'Lot Quality Report',
text: 'Lot Link -',
url: 'https://www.google.'
})
.then(() => console.log('Successful share')) //this is for sucess
.catch((error) => console.log('Error sharing', error));
} else {
console.log('Share not supported on this browser, do it the old way.');
alert('Share not supported on this browser, do it the old way.');
}
This code is not working on google chrome desktop in mac os. Any alternative I can use to run share functionality on google chrome desktop.
Share Improve this question edited Nov 1, 2022 at 6:57 naman verma asked Oct 31, 2022 at 5:06 naman vermanaman verma 1351 silver badge14 bronze badges1 Answer
Reset to default 10I have found the answer, in mac os we need to change the settings of browser . Url - https://winaero./chrome-to-get-web-share-api-support-on-desktop/
Click on - chrome://flags/#web-share >> enable >> relaunch browser
本文标签: javascriptNavigator share not working in chrome desktop in mac os any alternativeStack Overflow
版权声明:本文标题:javascript - Navigator share not working in chrome desktop in mac os any alternative? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743879565a2554953.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论