简体   繁体   English

Symfony2,Form,试图获取非对象的属性

[英]Symfony2, Form, Trying to get property of non-object in

I'm trying to create a contact form without entities, but after I submit form, I'll get this error: 我正在尝试创建一个没有实体的联系表单,但在我提交表单后,我会收到此错误:

Notice: Trying to get property of non-object in /var/www/Myblog/vendor/symfony/symfony/src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php line 84

Here is my ContactType.php 这是我的ContactType.php

<?php

namespace Acme\ContactBundle\Form\Type;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Symfony\Component\Validator\Constraints\Length;
use Symfony\Component\Validator\Constraints\NotBlank;
use Symfony\Component\Validator\Constraints\Email;

class ContactType extends AbstractType
{
    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => null,
            'csrf_protection' => true,
        ));
    }

    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('name', 'text', array('constraints' => array(new NotBlank(array('message' => 'Name cannot be blank')), new Length(array('min' => 3, 'minMessage' => 'Name is too short')), 'label' => 'Name')))
                ->add('email', 'email', array('constraints' => array(new NotBlank(array('message' => 'E-mail cannot be blank')), new Email(array('message' => 'E-mail is not valid')), 'label' => 'E-mail')))
                ->add('content', 'textarea', array('constraints' => array(new NotBlank(array('message' => 'Message cannot be blank')), new Length(array('min' => 10, 'minMessage' => 'Message must have min. 10 characters')), 'label' => 'Message')))
                ->add('save', 'submit', array('label' => 'Send'));
    }

    public function getName()
    {
        return 'contact';
    }
}

and my DefaultController.php 和我的DefaultController.php

<?php

namespace Acme\ContactBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Acme\ContactBundle\Form\Type\ContactType;
use Acme\SettingsBundle\Entity\Settings;
use Symfony\Component\Security\Core\Exception\AccessDeniedException;

class DefaultController extends Controller
{
    public function indexAction(Request $request)
    {
        $form = $this->createForm('contact');
        $form->handleRequest($request);

        if($form->isValid())
        {
            $em = $this->getDoctrine()->getManager();
            $settings = $em->getRepository('AcmeSettingsBundle:Settings')->find(Settings::DUMMY_IDENTIFIER);

            $message = \Swift_Message::newInstance()
                                    ->setSubject('Message from contact form - ' . $settings->getPageName())
                                    ->setFrom($form->get('email')->getData())
                                    ->setTo($settings->getPageEmail())
                                    ->setBody($this->renderView('AcmeContactBundle:Default:mail.txt.twig', array('name' => $form->get('name')->getData(), 'page_name' => $settings->getPageName(), 'homepage' => $this->generateUrl('default_blog'))));

            $this->get('mailer')->send($message);

            $this->get('session')->getFlashBag()->add(
                'success',
                'Message was successfuly sent'
            );
        }

        return $this->render('AcmeContactBundle:Default:index.html.twig', array('form' => $form->createView()));
    }
}

I read on the net, that it is PHP bug for 5.3 version, but I'm using 5.4.19 PHP version. 我在网上看到,它是5.3版本的PHP bug,但我使用的是5.4.19 PHP版本。 Any idea? 任何的想法?

UPDATE - DUMP TEST 更新 - 转储测试

    // Validate the data against the constraints defined
    // in the form
    $constraints = $config->getOption('constraints');
    var_dump($constraints); exit();

returns: 收益:

array(0) {
}

So I found where my problem was: 所以我找到了问题所在:

    $builder->add('name', 'text', array('constraints' => array(new NotBlank(array('message' => 'Name cannot be blank')), new Length(array('min' => 3, 'minMessage' => 'Name is too short')), 'label' => 'Name')))

Correct form: 正确形式:

    $builder->add('name', 'text', array('constraints' => array(new NotBlank(array('message' => 'Name cannot be blank')), new Length(array('min' => 3, 'minMessage' => 'Name is too short'))), 'label' => 'Name'))

I missed ) in my array, so costraint also was label field, so it was not an valid array. 我错过了在我的数组中,所以costraint也是标签字段,所以它不是一个有效的数组。 My bad. 我的错。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM