Pinterest 共享按钮功能无法使用反应共享库
我使用这个组件来分享博客。我使用 facebook、twitter、linkedin 和 pininterst 组件使用react-share。但是当我点击 pininterest 按钮时,它不会弹出分享框,但其他平台可以工作顺利。有人帮我解决这个问题。这是包裹的问题吗?
<PinterestShareButton url={localHostShareUrl}> <PinterestIcon size={35} round={true} /> </PinterestShareButton>
I use this component to share blogs.I use facebook,twitter,linkedin and pininterst components using react-share.But when i click on pininterest button it doesn't popup share box but other platforms work smoothly.Anyone help me to figure this issue.Is this the problem with the package?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在 PinterestShareButton 中包含“url”和“media”参数才能创建弹出窗口。
You'll need to include both "url" and "media" parameters in the PinterestShareButton to create the pop up.
https://www.npmjs.com/package/react-share
对于所有反应共享按钮 URL 是强制性的,如果是 PinterestShareButton,则还需要 media prop。
https://www.npmjs.com/package/react-share
For all react share buttons the URL is mandatory and in case of PinterestShareButton it requires a media prop as well.