gpt4 book ai didi

php - symfony 3 如何禁用 Controller 中的输入

转载 作者:可可西里 更新时间:2023-11-01 13:22:26 25 4
gpt4 key购买 nike

所以...我想根据 Controller 中的 IF 语句禁用 Symfony 3.0.2 中的输入。我怎么做?例如字段 first_name 的设置值

            $form->get('firstname')->setData($fbConnect['data']['first_name']);

所以我想到了类似 ->setOption('disabled', true)

最佳答案

使用表单选项,就像您建议的那样,您可以使用以下内容定义表单类型:

class FormType extends AbstractType
{
/**
* @param FormBuilderInterface $builder
* @param array $options
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('first_name',TextType::class,array('disabled'=>$option['first_name_disabled']));
}

/**
* @param OptionsResolver $resolver
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array('first_name_disabled'=>false));
}
}

然后在您的 Controller 中创建表单:

$form=$this->createForm(MyType::class, $yourEntity, array('first_name_disabled'=>$disableFirstNameField));

但是如果 disabled 的值取决于实体中的值,您应该使用 formevent:

use Symfony\Component\Form\FormEvent;
use Symfony\Component\Form\FormEvents;

/**
* @param FormBuilderInterface $builder
* @param array $options
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('first_name',TextType::class);

// Here an example with PreSetData event which disables the field if the value is not null :
$builder->addEventListener(FormEvents::PRE_SET_DATA,function(FormEvent $event){
$lastName = $event->getData()->getLastName();

$event->getForm()->add('first_name',TextType::class,array('disabled'=>($lastName !== null)));
});
}

关于php - symfony 3 如何禁用 Controller 中的输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35431367/

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