EasyAdmin Symfony 日期从 2012 年开始到 2022 年结束
EasyAdmin Symfony Date start from 2012 and end 2022
我是 Symfony 和 EasyAdmin 的新手。在我的实体中,我过生日。但是当我显示它时,它显示的是开始年份 2012,结束年份 2022。我该如何解决?
这是代码:
/**
* @var \date
*
* @ORM\Column(name="birth_day", type="date")
*/
private $birthDay;
您遇到的是 Symfony 默认年份范围。要解决这个问题,您可以像这样构建自己的 DateTime 类型:
<?php
namespace AppBundle\AdminForm\Field;
use Symfony\Component\Form\Extension\Core\Type\DateTimeType;
use Symfony\Component\OptionsResolver\OptionsResolver;
class MyCustomDateType extends DateTimeType
{
public function configureOptions(OptionsResolver $resolver)
{
// Set the defaults from the DateTimeType we're extending from
parent::configureOptions($resolver);
// Override: Go back 20 years and add 20 years
$resolver->setDefault('years', range(date('Y') - 20, date('Y') + 20));
// Override: Use an hour range between 08:00AM and 11:00PM
$resolver->setDefault('hours', range(8, 23));
}
}
然后您可以指示 EasyAdmin 像这样使用此类型:
- { property: 'occurance',
type: 'AppBundle\AdminForm\Field\MyCustomDateType',
label: 'Date and time' }
你好,我是这个问题的解决方案。
TestType.php 在表单文件夹下是我的表单生成器 class.
use Symfony\Component\Form\Extension\Core\Type\DateType;
class TestType 扩展了 AbstractType {
public function buildForm(FormBuilderInterface $builder, array $options) {
$builder
->add('name')
->add('birtdate',DateType::class, array(
'widget' => 'choice',
// this is actually the default format for single_text
'format' => 'yyyy-MM-dd',
'years' => range(date('Y')-80, date('Y'))
));
}
引用 link 是 https://symfony.com/doc/current/reference/forms/types/date.html#data-class
我是 Symfony 和 EasyAdmin 的新手。在我的实体中,我过生日。但是当我显示它时,它显示的是开始年份 2012,结束年份 2022。我该如何解决?
这是代码:
/**
* @var \date
*
* @ORM\Column(name="birth_day", type="date")
*/
private $birthDay;
您遇到的是 Symfony 默认年份范围。要解决这个问题,您可以像这样构建自己的 DateTime 类型:
<?php
namespace AppBundle\AdminForm\Field;
use Symfony\Component\Form\Extension\Core\Type\DateTimeType;
use Symfony\Component\OptionsResolver\OptionsResolver;
class MyCustomDateType extends DateTimeType
{
public function configureOptions(OptionsResolver $resolver)
{
// Set the defaults from the DateTimeType we're extending from
parent::configureOptions($resolver);
// Override: Go back 20 years and add 20 years
$resolver->setDefault('years', range(date('Y') - 20, date('Y') + 20));
// Override: Use an hour range between 08:00AM and 11:00PM
$resolver->setDefault('hours', range(8, 23));
}
}
然后您可以指示 EasyAdmin 像这样使用此类型:
- { property: 'occurance',
type: 'AppBundle\AdminForm\Field\MyCustomDateType',
label: 'Date and time' }
你好,我是这个问题的解决方案。 TestType.php 在表单文件夹下是我的表单生成器 class.
use Symfony\Component\Form\Extension\Core\Type\DateType;
class TestType 扩展了 AbstractType {
public function buildForm(FormBuilderInterface $builder, array $options) {
$builder
->add('name')
->add('birtdate',DateType::class, array(
'widget' => 'choice',
// this is actually the default format for single_text
'format' => 'yyyy-MM-dd',
'years' => range(date('Y')-80, date('Y'))
));
}
引用 link 是 https://symfony.com/doc/current/reference/forms/types/date.html#data-class