Symfony2下没有数据库更新

时间:2015-03-29 08:37:40

标签: php forms symfony doctrine-orm updates

我正在研究Symfony2下的一个项目,我遇到了一个小但令人不安的问题。

我有一个实体代表由该网站专用的协会领导的项目。在这个实体中,我有一个名为“$ inscriptionsOuvertes”的字段,用于注册学生是否可以为每个项目注册自己。

我想创建一个页面,我可以轻松修改每个项目的变量状态,但我所做的表单对我的数据库没有影响。

无论我做什么,$ inscriptionsOuvertes变量总是设置为false。此外,如果我为phpmyadmin下的任何项目手动将其更改为true,那么我提交表单的那一刻就会变回false。

以下是该实体的相关代码:

<?php

namespace CEC\SecteurProjetsBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * Projet
 *
 * @ORM\Table()
 * @ORM\Entity(repositoryClass="CEC\SecteurProjetsBundle\Entity\ProjetRepository")
 */
class Projet
{
/**
 * @var integer
 *
 * @ORM\Column(name="id", type="integer")
 * @ORM\Id
 * @ORM\GeneratedValue(strategy="AUTO")
 */
private $id;

/**
 * @var string
 *
 * @ORM\Column(name="nom", type="string", length=255)
 */
private $nom;

/**
* @var string
*
* @ORM\Column(name="slug", type="string", length=100)
*/
private $slug; <br>//Autres propriétés de la classe

/**
* @var boolean
*
* @ORM\Column(name="inscriptions_ouvertes", type="boolean")
*/
private $inscriptionsOuvertes = false;



//Other properties, getters et setters...

/**
 * Set inscriptionsOuvertes
 *
 * @param boolean $etat
 * @return Projet
 */
public function setInscriptionsOuvertes($etat)
{
    $this->inscriptionsOuvertes = $etat;

    return $this;
}

/**
 * Set inscriptionsOuvertes
 *
 * @return Projet
 */
public function switchInscriptionsOuvertes()
{
    $this->inscriptionsOuvertes = !$this->inscriptionsOuvertes;

    return $this;
}

/**
 * Get inscriptionsOuvertes
 *
 * @return boolean
 */
public function getInscriptionsOuvertes()
{
    return $this->inscriptionsOuvertes;
}

}

以下是我创建的表单的代码:

{% extends 'CECSecteurProjetsBundle:Projets:base.html.twig' %}


{% block right %}

{{parent()}}
<div class="well" style = "padding-left:20px;padding-right:15px;">
<h1>Ouverture des inscriptions aux projets </h1>

<form class="form form-horizontal" method="post" action="{{ path('ouverture_inscription') }}"><br/>
Voulez-vous ouvrir les inscriptions aux projets ?<br/>

{% for projet in projets%}
<label for="{{projet.slug}}">{{projet.nom}}</label>
<div class="btn-group" data-toggle="buttons" id="{{projet.slug}}">
    <label class="btn btn-success" >
    <input type="radio" name="{{projet.slug}}" id="option1" value="true" autocomplete="off" {% if projet.inscriptionsOuvertes %}checked {% endif %}> Oui
    </label>
    <label class="btn btn-danger">
    <input type="radio"  name="{{projet.slug}}" id="option2" value="false" autocomplete="off" {% if not projet.inscriptionsOuvertes %}checked {% endif %}> Non
    </label>
</div><br/>
{% endfor %}
<div class="footer-controls">
<br/>
    <input type="submit" value="Mettre à jour les inscriptions aux projets" class="btn btn-primary" />
    <a href="{{ path('description_projets') }}" class="btn pull-right">Annuler</a>
</div>
</form>
</div>
{% endblock %}

最后,这是负责验证表单和更新数据库的方法。

<?php

namespace CEC\SecteurProjetsBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use CEC\SecteurProjetsBundle\Form\ProjetType;
use CEC\SecteurProjetsBundle\Form\ReunionType;
use CEC\SecteurProjetsBundle\Form\DossierType;
use CEC\SecteurProjetsBundle\Entity\Reunion;
use CEC\SecteurProjetsBundle\Entity\Dossier;

class ProjetsController extends Controller
{
//Other methods of the controller

/**
* Mise à jour de l'état d'ouverture des inscriptions des projets
*
* @Template();
*/
public function inscriptionsAction()
{
    $em = $this->getDoctrine()->getEntityManager();
    $projets = $this->getDoctrine()->getRepository('CECSecteurProjetsBundle:Projet')->findAll();
    $request = $this->getRequest();
    $data = $request->request->all();
    $message ='';

    if($request->isMethod('POST'))
    {
        foreach($projets as $projet)
        {
            $slug = $projet->getSlug();
            $projet->setInscriptionsOuvertes($data[$slug]);

            $em->flush();

        }

        $this->get('session')->setFlash('success', 'L\'ouverture des inscriptions a bien été mise à jour. ');
        return $this->redirect($this->generateUrl('description_projets'));

    }

    return array('projets'=>$projets);
}

}

我查看了这个网站,发现this与我的相似,但不同,并没有回答我的问题(在我看来)。

你们是否知道这种形式发生了什么?我必须承认,目前我还没有看到这一切背后的逻辑模式。

我做过的测试详情:

  • 正确定义了数组$数据(对于每个slug,每个状态都正确链接)。

  • $ inscriptionsOuvertes-&gt; getInscriptionsOuvertes()在我将其设置为我想要的值之前调用它时返回null。

  • $ inscriptionsOuvertes-&gt; getInscriptionsOuvertes()在我通过 - > gt; setInscriptionsOuvertes($ data [$ slug])更新后返回正确的状态。

  • 在数据库中手动将每个变量更改为true。在下一个表单提交时,一切都会回到假

非常感谢您的回答!


感谢gp_sflover,我找到了解决方案。我的表单给出的值是字符串而不是布尔值。

替换我填充数组$ data的行:     $ data [$ slug] =($ request-&gt; request-&gt; get($ slug)==“true”)? true:false;

1 个答案:

答案 0 :(得分:2)

您在setInscriptionsOuvertes($etat)期间接受boolean的{​​{1}}方法似乎设置了$projet->setInscriptionsOuvertes($data[$slug]); string