为什么日期不以哈巴狗形式输入?

问题描述 投票:0回答:1

我有一个哈巴狗形式。以下input元素中的日期不呈现。我知道日期数据是可用且正确的,因为它在输入上方的p元素中渲染得很好。

知道为什么日期不会在下面的input元素中呈现吗?我是否需要以特殊方式格式化日期以使输入接受日期值?谢谢!

div.form-group
    p #{author.date_of_birth}   // THIS RENDERS FINE, SO DATA IS THERE
    input#date_of_birth.form-control(type='date' name='date_of_birth' value=(undefined===author ? '' : author.date_of_birth))
    input#date_of_death.form-control(type='date' name='date_of_death' value=(undefined===author ? '' : author.date_of_death))

express pug
1个回答
1
投票

p元素中显示的输出是什么?因为,我猜日期可能不是正确的格式(“yyyy-mm-dd”)来显示它。

See a sample working code

© www.soinside.com 2019 - 2024. All rights reserved.