gpt4 book ai didi

javascript - 我在状态中有一个 T 和 Z 格式的数据,React 输入在 HH :MM ss format so how to convert 中接受

转载 作者:行者123 更新时间:2023-11-30 09:10:23 24 4
gpt4 key购买 nike

我正在尝试将数据传递给表单输入,但它不接受 TZ 格式,所以我如何才能将其转换为接受有效格式的格式

<input
className="form-control"
type="datetime-local"
name="start"
id="start"
placeholder="Start Date"
onChange={this.onChange}
value={this.state.editData.start || ''} //HERE I want pass
/>

最佳答案

你可以使用 momentjs要做到这一点。所以安装 moment,导入它并像这样使用它:

<input
className="form-control"
type="datetime-local"
name="start"
id="start"
placeholder="Start Date"
onChange={this.onChange}
value={moment(this.state.editData.start).format('hh:mm ss') || ''}
/>

关于javascript - 我在状态中有一个 T 和 Z 格式的数据,React 输入在 HH :MM ss format so how to convert 中接受,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59588391/

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