我无法在日期输入类型中存储实际的日期。 当我设置细枝线以获取日期时,它可以正常工作,但是当我尝试将其存储在输入中时,它不会显示。
twig
{#This line provides the day of today#}
{{ "now"|date("d/m/Y") }}
twig
{#Then this line doesn't changes the value of the input#}
<input type="date" value="{{ "now"|date("d/m/Y") }}" class="form-control" name="date">
答案 0 :(得分:0)
这既不是树枝,也不是交配问题...
<input type="date">
的值格式为YYYY-mm-dd
。显示内容有所不同。 <input type="date">
的格式将取决于用户的语言环境和内容。
请参阅https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date