0
私は反応が新しく、何を知ろうとしているのかは、サーバーの一部のコンポーネントのレンダリングを避ける方法です。 は、ここに私のコードです:Reactの一部のコンポーネントのサーバーレンダリングを回避するにはどうすればよいですか?
export default class PrTopBanner extends React.Component {
constructor(props) {
super(props);
this.isTextVisible = false;
}
componentDidMount() {
this.isTextVisible = true;
}
getContent() {
return (
<div>
<a className={classNames(cssClasses.textWrapper, {
'textVisible': this.isTextVisible})}
</a>
</div>
);
}
}
目に見えないテキストコンテンツ、および)componentDidMount(フェードイン、ので、どのようにテキストに関する私のコードは、サーバーのレンダリングを持ってされないことを回避することができます。