8

フォームに問題があり、コメントを保存するたびにこのエラーが発生します:

配列型または Traversable および ArrayAccess 型の引数が必要です。オブジェクトが指定されています

まず、クラスの commentType を作成します。

    public function buildForm(FormBuilder $builder, array $options)
{
    $builder
        ->add('comment', 'textarea')
        ->add('commentedName', 'text')
        ->add('idNews','hidden',  array('error_bubbling'=>true))
        ->add('country', 'text')
        ->add('email','email')
        ->add('captcha', 'captcha');
}

フォームをカスタマイズします:

   public function getDefaultOptions(array $options){

$collectionConstraint = new Collection (array (
    'email' => new Email(array('message' => 'invalid address email')),
    'commentedName' => array(new MaxLength(array('limit' => 30, 'message' => ''))),
    'comment' => array(new MinLength(array('limit' => 20, 'message' => ''))),
    'country' => new MinLength(array('limit' => 3, 'message' => '')),
    'idNews' => array(new MaxLength(array('limit' => 30, 'message' => ''))),
));

return array('validation_constraint' => $collectionConstraint);
}

次に、コントローラーでフォームを呼び出し、データを DB に保存します。

$comment =  new \Mybundle\BackendBundle\Entity\Comments();

$form = $this->createForm(new \Mybundle\MainBundle\Form\CommentType(), $comment);

    $request = $this->get('request');
if ($request->getMethod() == 'POST') {
    $form->bindRequest($request);

    if ($form->isValid()) {
        $idNews= $this->getDoctrine()
            ->getRepository('Mybundle\BackendBundle\Entity\News')
            ->find($id);

        $comment->setIdNews($idNews);

        $em = $this->getDoctrine()->getEntityManager();
        $em->persist($comment);
        $em->flush();

       return $this->redirect($this->generateUrl('News',array('id' => $id,'slug'=>$slug)));

そして私の小枝で私は:

<table style="float: right;" >
<tbody>
    <tr>
        <td>{{ form_widget(form.commentedName) }} </td>
        <td>{{ form_label(form.commentedName, "name") }}</td>
    </tr>
    <tr>
        <td class="comment-error">{{ form_errors(form.commentedName) }}</TD>
    </tr>
    <tr>
        <td>{{ form_widget(form.country) }} </td>
        <td>{{ form_label(form.country, "country") }}</td>
    </tr>
    <tr>
        <td class="comment-error">{{ form_errors(form.country) }}</TD>
    </tr>
    <tr>
        <td class="large_text">{{ form_widget(form.email) }} </td>
        <td>{{ form_label(form.email, "address") }}</td>
    </tr>
    <tr>
        <td class="comment-error">{{ form_errors(form.email) }}</td>
    </tr>
    <tr>
        <td>{{ form_widget(form.comment) }} </td>
        <td>{{ form_label(form.comment, "comment") }}</td>
    </tr>
    <tr>
        <td class="comment-error">{{ form_errors(form.comment) }}</td>
    </tr>
    <tr>
        <td>{{ form_widget(form.captcha) }} </td>
    </tr>

 <tr>
        <td class="comment-error">{{ form_errors(form) }}</td>
    </tr>  

上記の行でオブジェクト「$comment」を「null」に変更すると、エラーは発生しませんでしたが、データベースにデータを保存できません...

誰にもアイデアがありますか?

4

1 に答える 1

6

コレクション制約を使用すると、配列 (または を実装するものTraversable) のみを検証できます。クラスの注釈に移動する必要がありますComments

于 2012-05-14T14:20:00.340 に答える