我正在使用next js
和使用react-share
共享页面。我的问题是当我尝试共享页面然后向我显示如下错误:
Parameter 'href' should represent a valid URL
我不知道为什么。
我试过这样:
import {FacebookIcon, FacebookShareButton, FacebookShareCount} from 'react-share'
const shareUrl = global.window && window.location.href;
<FacebookShareButton
url={`${shareUrl}`}
title={blog.title}
className="Demo__some-network__share-button">
<FacebookIcon
size={32}
round />
</FacebookShareButton>
请有任何建议