Pinterest 共享按钮功能无法使用反应共享库

发布于 2025-01-10 18:23:05 字数 300 浏览 1 评论 0原文

;>

我使用这个组件来分享博客。我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遮云壑 2025-01-17 18:23:05

您需要在 PinterestShareButton 中包含“url”和“media”参数才能创建弹出窗口。

<PinterestShareButton url={url} media={url} description="">
 <PinterestIcon />
</PinterestShareButton>

You'll need to include both "url" and "media" parameters in the PinterestShareButton to create the pop up.

<PinterestShareButton url={url} media={url} description="">
 <PinterestIcon />
</PinterestShareButton>
锦上情书 2025-01-17 18:23:05

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.

enter image description here

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文