如何添加cookie,以便加载程序每天只显示一次


class Main extends Component {
state = {
loading: true
}
componentDidMount = () => {
setTimeout(() => {
this.setState({
loading: false
})
}, 1500)
}
render() {
return (
this.state.loading ?
<LoadingScreen></LoadingScreen>
:
<OptionScreen></OptionScreen>
)
}
}

我希望加载屏幕每天只显示一次(一天后刷新(。队友叫我用饼干,但我不确定

请帮忙?????

Cookie是不可行的。

您可以拨打";setInterval";或";setTimeout";刷新当前页面:window.location.reload(false(;

最新更新