gpt4 book ai didi

javascript - 在 React.Js 组件中仅获取当前日期的秒数

转载 作者:行者123 更新时间:2023-12-02 22:28:36 25 4
gpt4 key购买 nike

嘿,我只想提取当前日期的秒数,但我有点被阻止

这是我的组件,它只返回整个日期:

  class Clock extends Component {
constructor(props) {
super(props);
this.state = {
time: new Date().toLocaleString()
};
}
componentDidMount() {
this.intervalID = setInterval(
() => this.tick(),
1000
);
}
componentWillUnmount() {
clearInterval(this.intervalID);
}
tick() {
this.setState({
time: new Date().toLocaleString()
});
}
render() {
return (
<div>{this.state.time}.</div>


);
}
}
export default Clock;

最佳答案

constructor(props) {
super(props);
this.state = {
time: new Date().getSeconds()
};
}

您可以在日期对象上使用getSeconds();方法

关于javascript - 在 React.Js 组件中仅获取当前日期的秒数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58983634/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com