gpt4 book ai didi

php - 使用 Symfony 3 Forms 插入 DateType 字段时出现问题

转载 作者:行者123 更新时间:2023-11-30 22:19:41 24 4
gpt4 key购买 nike

我搜索了很多,但在 StackOverflow 中找不到任何关于我的问题的...

我有这个结构:(恢复)

$form = $this->createFormBuilder($vendedor)
// ...
->add('datanascimento', DateType::class, [
'label' =>'D.Nascimento',
'attr' =>['class'=>'input-sm'],
'format'=>'d-M-yyyy',
'years'=>range(1970, 2010)
])
// ...
->getForm();

我的实体中有这个配置:

//...

/**
* @var \DateTime
*
* @ORM\Column(name="dataNascimento", type="date", nullable=true)
*/
private $datanascimento;

//...

/**
* Set datanascimento
*
* @param string $datanascimento
*
* @return CadPfPj
*/
public function setDatanascimento($datanascimento)
{
$this->datanascimento = $datanascimento;

return $this;
}

/**
* Get datanascimento
*
* @return string
*/
public function getDatanascimento()
{
return $this->datanascimento;
}

当我尝试插入一个新的寄存器时,出现了这个错误:

Catchable Fatal Error: Object of class DateTime could not be converted to string
500 Internal Server Error - ContextErrorException

当我调试并转储对象时...我发现了这个:

//...
-datanascimento: DateTime {#530 ▼
+"date": "1970-01-01 00:00:00.000000"
+"timezone_type": 3
+"timezone": "America/Sao_Paulo"
}
//...

我的数据库是mySQL,字段类型是datetime...我如何配置 symfony 停止发送数组并只发送“日期”?

感谢您的帮助!

最佳答案

您需要更改小部件 type of form entry – 默认为 choice,但您需要 textsingle_text

        ->add('datanascimento', DateType::class, [
'label' =>'D.Nascimento',
'widget' =>'single_text',
'attr' =>['class'=>'input-sm'],
'format' =>'d-M-yyyy',
'years' =>range(1970, 2010)
])

关于php - 使用 Symfony 3 Forms 插入 DateType 字段时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36994028/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com