gpt4 book ai didi

html - Django 模板转换 datetime-local 格式

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

我遇到了一个问题,关于如何将 datetime 格式从我的 db 转换为 html datetime-local。这是我数据库中的数据格式:

2020-07-18T17:25:00Z

当我尝试将此数据传递给类型为 datetime-local 的 html 输入时,它会给我这样的警告: enter image description here

这是我的带有格式化值的 html 代码:

<input type="datetime-local" required="" value="{{order.pick_up_datetime|date:'Y-m-dTh:i a'}}">

最佳答案

经过一天的调试,我的问题在这里得到了答案。我只是做了这样的事情:

<input type="datetime-local" required="" value="{{order.pick_up_datetime|date:'Y-m-d'}}T{{order.pick_up_datetime|time:'H:i:s'}}">

只需在值中将datetime的值分开,并添加一个T(T是只是一种标准 (ISO 8601) 方式来分隔时间

这里的答案帮助我认识并解决了我的问题:Why does DateTime add a T separator to the timestamp?

关于html - Django 模板转换 datetime-local 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63099974/

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