IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Symfony PHP Discussion :

Retour d'un formulaire non conforme [3.x]


Sujet :

Symfony PHP

  1. #1
    Membre du Club
    Homme Profil pro
    Assistant aux utilisateurs
    Inscrit en
    Janvier 2016
    Messages
    95
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 55
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Assistant aux utilisateurs

    Informations forums :
    Inscription : Janvier 2016
    Messages : 95
    Points : 61
    Points
    61
    Par défaut Retour d'un formulaire non conforme
    Bonjour,
    j'ai créé un formulaire pour rechercher un proprietaire comme suite :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    $builder
                ->add('nomProprietaire', EntityType::class, [
                    'class' => 'AppBundle:Proprietaire',
                    'query_builder' => function(EntityRepository $entityRepository) {
                        return $entityRepository->createQueryBuilder('p')
                            ->orderBy('p.nomProprietaire', 'ASC');
                    },
                    'choice_label' => 'nomProprietaire',
                    'multiple' => false])
                ->add('rechercher', SubmitType::class, array(
                    'attr' => array('class' => 'btn btn-primary'),
                ));
    Mon probléme est que je recupere bien mon proprietaire mais au niveau de nomProprietaire
    J'ai mis un dump dans le retour de lon formulaire =>
    voir le dump :
    Proprietaire {#545 ▼
    -id: null
    -nomProprietaire: Proprietaire {#860 ▼
    -id: 4
    -nomProprietaire: "nom"
    -prenomProprietaire: "prenom"
    -adresseProprietaire: "adresse"
    -telephoneProprietaire: "telephone"
    -mobileProprietaire: "mobile"
    -observationProprietaire: "observation"
    #animal: PersistentCollection {#903 ▶}
    #ville: Ville {#921 ▶}
    #sexe: null
    #user: null
    -archiveProprietaire: false
    }
    -prenomProprietaire: null
    -adresseProprietaire: null
    -telephoneProprietaire: null
    -mobileProprietaire: null
    -observationProprietaire: null
    #animal: null
    #ville: null
    #sexe: null
    #user: null
    -archiveProprietaire: null
    +"rendezVous": ArrayCollection {#546 ▶}
    }
    Comment faire pour récuperer soit juste l'Id soit le proprietaire complet en tant que proprietaire et non en tant que nomProprietaire.

    merci de votre aide

  2. #2
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Février 2003
    Messages
    307
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Administration - Collectivité locale

    Informations forums :
    Inscription : Février 2003
    Messages : 307
    Points : 378
    Points
    378
    Par défaut
    Ton entité n'est sans doute pas correcte

    Renomme ta propriété nomProprietaire en proprietaire

    Ensuite dans tes templates ou controller tu pourras affichier le nom ainsi :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
    //pĥp
    $entity->getProprietaire()->getNom()
    //twig
    $entity.proprietaire.nom

  3. #3
    Membre du Club
    Homme Profil pro
    Assistant aux utilisateurs
    Inscrit en
    Janvier 2016
    Messages
    95
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 55
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Assistant aux utilisateurs

    Informations forums :
    Inscription : Janvier 2016
    Messages : 95
    Points : 61
    Points
    61
    Par défaut
    Bonsoir, je n'arrive pas à comprendre la solution.
    Mon entity "Proprietaire" est à priori correct et comme suit :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    <?php
     
    namespace AppBundle\Entity;
     
    use Doctrine\ORM\Mapping as ORM;
     
    /**
     * ProprietaireRepository
     *
     * @ORM\Table(name="proprietaire")
     * @ORM\Entity(repositoryClass="AppBundle\Repository\ProprietaireRepository")
     */
    class Proprietaire
    {
        /**
         * @var int
         *
         * @ORM\Column(name="id", type="integer")
         * @ORM\Id
         * @ORM\GeneratedValue(strategy="AUTO")
         */
        private $id;
     
     
        /**
         * @var string
         *
         * @ORM\Column(name="nomProprietaire", type="string", length=50)
         */
        private $nomProprietaire;
     
        /**
         * @var string
         *
         * @ORM\Column(name="prenomProprietaire", type="string", length=50)
         */
        private $prenomProprietaire;
     
        /**
         * @var string
         *
         * @ORM\Column(name="adresseProprietaire", type="string", length=255)
         */
        private $adresseProprietaire;
     
        /**
         * @var string
         *
         * @ORM\Column(name="telephoneProprietaire", type="string", length=10, nullable=true)
         */
        private $telephoneProprietaire;
     
        /**
         * @var string
         *
         * @ORM\Column(name="mobileProprietaire", type="string", length=10, nullable=true)
         */
        private $mobileProprietaire;
     
        /**
         * @var string
         *
         * @ORM\Column(name="observationProprietaire", type="string", length=255, nullable=true)
         */
        private $observationProprietaire;
     
        /**
         *
         * @ORM\OneToMany(targetEntity="Animal", mappedBy="proprietaire")
         */
        protected $animal;
     
        /**
         *
         * @ORM\ManyToOne(targetEntity="Ville",inversedBy="proprietaire")
         */
        protected $ville;
     
     
        /**
         *
         * @ORM\ManyToOne(targetEntity="Sexe",inversedBy="proprietaire")
         */
        protected $sexe;
     
        /**
         * Get id
         *
         * @return integer
         */
        public function getId()
        {
            return $this->id;
        }
     
        /**
         * Set nomProprietaire
         *
         * @param string $nomProprietaire
         *
         * @return Proprietaire
         */
        public function setNomProprietaire($nomProprietaire)
        {
            $this->nomProprietaire = $nomProprietaire;
     
            return $this;
        }
     
        /**
         * Get nomProprietaire
         *
         * @return string
         */
        public function getNomProprietaire()
        {
            return $this->nomProprietaire;
        }
     
        /**
         * Set prenomProprietaire
         *
         * @param string $prenomProprietaire
         *
         * @return Proprietaire
         */
        public function setPrenomProprietaire($prenomProprietaire)
        {
            $this->prenomProprietaire = $prenomProprietaire;
     
            return $this;
        }
     
        /**
         * Get prenomProprietaire
         *
         * @return string
         */
        public function getPrenomProprietaire()
        {
            return $this->prenomProprietaire;
        }
     
        /**
         * Set adresseProprietaire
         *
         * @param string $adresseProprietaire
         *
         * @return Proprietaire
         */
        public function setAdresseProprietaire($adresseProprietaire)
        {
            $this->adresseProprietaire = $adresseProprietaire;
     
            return $this;
        }
     
        /**
         * Get adresseProprietaire
         *
         * @return string
         */
        public function getAdresseProprietaire()
        {
            return $this->adresseProprietaire;
        }
     
        /**
         * Set telephoneProprietaire
         *
         * @param string $telephoneProprietaire
         *
         * @return Proprietaire
         */
        public function setTelephoneProprietaire($telephoneProprietaire)
        {
            $this->telephoneProprietaire = $telephoneProprietaire;
     
            return $this;
        }
     
        /**
         * Get telephoneProprietaire
         *
         * @return string
         */
        public function getTelephoneProprietaire()
        {
            return $this->telephoneProprietaire;
        }
     
        /**
         * Set mobileProprietaire
         *
         * @param string $mobileProprietaire
         *
         * @return Proprietaire
         */
        public function setMobileProprietaire($mobileProprietaire)
        {
            $this->mobileProprietaire = $mobileProprietaire;
     
            return $this;
        }
     
        /**
         * Get mobileProprietaire
         *
         * @return string
         */
        public function getMobileProprietaire()
        {
            return $this->mobileProprietaire;
        }
     
        /**
         * Set observationProprietaire
         *
         * @param string $observationProprietaire
         *
         * @return Proprietaire
         */
        public function setObservationProprietaire($observationProprietaire)
        {
            $this->observationProprietaire = $observationProprietaire;
     
            return $this;
        }
     
        /**
         * Get observationProprietaire
         *
         * @return string
         */
        public function getObservationProprietaire()
        {
            return $this->observationProprietaire;
        }
     
     
        /**
         * Set user
         *
         * @param \AppBundle\Entity\User $user
         *
         * @return Proprietaire
         */
        public function setUser(\AppBundle\Entity\User $user = null)
        {
            $this->user = $user;
     
            return $this;
        }
     
        /**
        /**
         * Set ville
         *
         * @param \AppBundle\Entity\Ville $ville
         *
         * @return Proprietaire
         */
        public function setVille(\AppBundle\Entity\Ville $ville = null)
        {
            $this->ville = $ville;
     
            return $this;
        }
     
        /**
         * Get ville
         *
         * @return \AppBundle\Entity\Ville
         */
        public function getVille()
        {
            return $this->ville;
        }
     
        /**
         * Add animal
         *
         * @param \AppBundle\Entity\Animal $animal
         *
         * @return Proprietaire
         */
        public function addAnimal(\AppBundle\Entity\Animal $animal)
        {
            $this->animal[] = $animal;
     
            return $this;
        }
     
        /**
         * Remove animal
         *
         * @param \AppBundle\Entity\Animal $animal
         */
        public function removeAnimal(\AppBundle\Entity\Animal $animal)
        {
            $this->animal->removeElement($animal);
        }
     
        /**
         * Get animal
         *
         * @return \Doctrine\Common\Collections\Collection
         */
        public function getAnimal()
        {
            return $this->animal;
        }
     
        public function __toString()
        {
            return $this -> nomProprietaire .' '.$this -> prenomProprietaire;  
        }
     
     
        /**
         * Set sexe
         *
         * @param \AppBundle\Entity\Sexe $sexe
         *
         * @return Proprietaire
         */
        public function setSexe(\AppBundle\Entity\Sexe $sexe = null)
        {
            $this->sexe = $sexe;
     
            return $this;
        }
     
        /**
         * Get sexe
         *
         * @return \AppBundle\Entity\Sexe
         */
        public function getSexe()
        {
            return $this->sexe;
        }
     
        }
    .

    Si je sélectionne un proprietaire, je récupere toutes les informations de l'objet Proprietaire.
    Seulement l'objet se retrouve dans le "nomProprietaire".

    Je n'arrive pas à recuperer juste le nomProprietaire.

  4. #4
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Février 2003
    Messages
    307
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Administration - Collectivité locale

    Informations forums :
    Inscription : Février 2003
    Messages : 307
    Points : 378
    Points
    378
    Par défaut
    Et form il fait référence à quelle classe ?

    Donne le aussi

  5. #5
    Membre du Club
    Homme Profil pro
    Assistant aux utilisateurs
    Inscrit en
    Janvier 2016
    Messages
    95
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 55
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Assistant aux utilisateurs

    Informations forums :
    Inscription : Janvier 2016
    Messages : 95
    Points : 61
    Points
    61
    Par défaut
    Merci pour ton aide,
    le form fait appel à la classe proprietaire

    bonne journée

  6. #6
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Février 2003
    Messages
    307
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Administration - Collectivité locale

    Informations forums :
    Inscription : Février 2003
    Messages : 307
    Points : 378
    Points
    378
    Par défaut
    ha oui j'ai pas vu que c'était pour une recherche
    Récupère ainsi alors

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
     if ($form->isSubmitted() && $form->isValid()) {
     
    $dataForm = $form->getData();
    $nom = $dataForm->getNomProprietaire()->getNom();

  7. #7
    Membre du Club
    Homme Profil pro
    Assistant aux utilisateurs
    Inscrit en
    Janvier 2016
    Messages
    95
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 55
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Assistant aux utilisateurs

    Informations forums :
    Inscription : Janvier 2016
    Messages : 95
    Points : 61
    Points
    61
    Par défaut
    merci de ton aide, je teste ce soir.
    Mais j'ai bien compris mon problème.

    cdt
    Stéphane

  8. #8
    Membre du Club
    Homme Profil pro
    Assistant aux utilisateurs
    Inscrit en
    Janvier 2016
    Messages
    95
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 55
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Assistant aux utilisateurs

    Informations forums :
    Inscription : Janvier 2016
    Messages : 95
    Points : 61
    Points
    61
    Par défaut
    J'ai testé ce midi et cela fonctionne, merci de ton aide.

    Je ferme la discussion.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 6
    Dernier message: 06/01/2007, 18h07
  2. [Tableaux] Retour non conforme
    Par Mister Nono dans le forum Langage
    Réponses: 3
    Dernier message: 03/11/2005, 12h06
  3. Réponses: 5
    Dernier message: 30/09/2005, 16h42
  4. Désactivation bouton = formulaire non soumis
    Par Gwipi dans le forum Général JavaScript
    Réponses: 4
    Dernier message: 31/05/2005, 16h11
  5. Liste deroulante et VALUE non conforme a la realité
    Par ahage4x4 dans le forum Général JavaScript
    Réponses: 7
    Dernier message: 27/05/2005, 13h33

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo