我正在使用一个名为.libreact-tooltip
的框架调用的库react-static
。
但问题是它不支持 SSR,而且我在构建期间遇到了一些问题。
我还尝试验证文档,如果它undefined
返回 null
if (typeof document === "undefined") {
return null;
}
return (
<div className="inline-flex text-grey-darker">
<span data-tip data-for={tooltipId}>
<IconInfoSmall />
</span>
<ReactTooltip
id={tooltipId}
effect="solid"
type="light"
border
borderColor="#969696"
className={`info-tooltip ${small ? 'w-60' : 'w-90'}`}
clickable
>
但是没有任何效果......有人遇到过这个问题吗?是处理它的最佳方法吗?