你好,我问这个菜鸟有关symfony 3.4表格的问题,但首先我要解释一下情况:
我的视图中有一个表单“ A”,并且仅显示一个下拉列表,该表单从不提交,因为我只需要其选定的值,换句话说,取决于选定的值,其中嵌入了一个不同的表单我的表单“ A”,当值更改时,ajax执行控制器动作,该动作执行特定表单的formcreate并呈现其formview,该视图只是嵌入式表单的字段,仅此而已。
每当您更改形式“ A”的下拉列表的值并正确提交嵌入的形式时,它的工作方式就像魅力,但是当存在教义验证错误(“长度错误,空白字段等”)时,就会发生此问题,页面将刷新,仅保留嵌入的表单数据(“ B”),我也希望它保留外部表单的数据,但是我不知道如何实现,这是我的2个表单和控制器:>
表格A:
<?php
namespace CGR\DocumentoBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Bridge\Doctrine\Form\Type\EntityType;
use Symfony\Component\OptionsResolver\OptionsResolver;
use CGR\DocumentoBundle\Entity\Documento;
use Doctrine\ORM\EntityRepository;
class DocumentoType extends AbstractType
{
/**
* @param FormBuilderInterface $builder
* @param array $options
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
// this is the dropdown list
->add('tipodoc', EntityType::class, array(
'class' => 'CGR\DocumentoBundle\Entity\TipoDoc',
'placeholder' => 'Please choose',
'required' => true,
'query_builder' => function (EntityRepository $er) {
return $er->createQueryBuilder('e')
->orderBy('e.nombre', 'ASC');
},
'label' => '* Tipo de Documento',
'choice_label' => 'nombre',
'placeholder'=>'Seleccione...',
))
;
}
/**
* @param OptionsResolver $resolver
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'CGR\DocumentoBundle\Entity\Documento'
));
}
}
表格B:
//这是在表单A中选取值时的示例表单类型。
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
//->add('correlativo')
->add('asunto', TextareaType::class, array(
'required' => true,
))
->add('conjunto',ChoiceType::class , array(
'mapped' => false,
'required' => true,
'choices'=> array('si'=>'si', 'no'=>'no'),
'expanded'=>true,
'placeholder'=>null,
'empty_data'=> null,
))
->add('usuarioAsignado', ChoiceType::class, array(
'label' => 'Analista',
'required' => true,
'mapped'=> true,
'choices' => $comboAnalista,
))
// other fields ...
}
/**
* @param OptionsResolver $resolver
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'CGR\DocumentoBundle\Entity\ReservaPtoCta',
'user' => null
));
}
}
显示嵌入式表单的控制器:
public function verFormAction(Request $request) {
// the value I get from the dropdown, sent by ajax
$tipo_docs = $request->get("tipo_docs");
// if the value from the dropdown is "punto de cuenta" it does this
if ($tipo_docs =="Punto de Cuenta") {
$reserva = new ReservaPtoCta();
$form = $this->createForm('CGR\DocumentoBundle\Form\ReservaPtoCtaType', $reserva);
return $this->render('DocumentoBundle:PuntoDeCuenta:new_pto_cta.html.twig',
array(
'organizacion' => $organizacion,
'form' => $form->createView(),
));
}
当出现表单错误或内部表单出现时,如何保存我使用的两种表单的数据?