繁体   English   中英

如何在我的angular(6+)PWA应用中带来共享选项,以将媒体共享到社交应用(Messenger,Whatsapp)?

[英]How can i bring share option in my angular(6+) PWA app to share media to social apps(Messenger,Whatsapp)?

我正在开发可同时在网络版本和移动版本上使用的渐进式Web应用程序。 我正在寻找一个共享选项,以将我生成的PDF共享到Whatsapp(或任何其他社交网站,如facebook,Messenger,LinkedIn)。 有帮助吗?

您可以使用Web Share API

if ('share' in navigator) { navigator.share({ title: document.title, text: text, url: location.href, }) } else { // Here we use the WhatsApp API as fallback; remember to encode your text for URI location.href = 'https://api.whatsapp.com/send?text=' + encodeURIComponent(text + ' - ') + location.href }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM