我无法将实际日期存储在我的日期输入类型中。当我设置树枝线来获取日期时,它完美地工作但是当我尝试将它存储在我的输入中时它不会显示它。
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">
这不是一个树枝也不是一个symfony问题......
<input type="date">
值的格式是YYYY-mm-dd
。显示器是不同的。 <input type="date">
将根据用户区域设置和内容进行格式化。
见https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date