想知道是否有更简单的方法将类添加到body标签。
目前我正在做这样的事情 主要成分
const MAIN_CLASSES = [ three-col, darkTheme, blueHeader, .... etc]
class MainComponent extends React.Component {
componentDidMount() {
document.body.classList.add(...MAIN_CLASSES);
}
componentWillUnmount() {
document.body.classList.remove(...MAIN_CLASSES);
}
render() ....
}
有兴趣知道别人在做什么,谢谢你!