我有一个哈巴狗形式。以下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))
p
元素中显示的输出是什么?因为,我猜日期可能不是正确的格式(“yyyy-mm-dd”)来显示它。