在实体中,日期时间已标定:
/**
* @var \DateTime
* @ORM\Column(name="task_date_start", type="datetime", nullable=true)
*/
private $taskDateStart;
在表格中
$builder->add('taskDateStart', DateType::class, [
"widget" => "single_text",
"html5" => false,
"format" => "dd-MM-yyyy" ,
"attr" => ["class" => "js-datepicker"],
"required" => false
]);
在字段中插入 null 时出现此错误
传递给 ... 的参数 1 必须是 DateTime 的实例,给定 null