我有哈巴狗。以下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))