Как я могу хранить данные в Array Collection с учением (Symfony 4)? - PullRequest
0 голосов
/ 04 февраля 2019

Мой контроллер:

            /**
            * @Route("/row/{slug}/{connect}/{field}/{productgroup}", name="row", methods={"POST"})
            */

            public function row($slug, $connect, $field,$productgroup, Request $request) {

              $EntityName = 'App\\Entity\\' . ucwords($slug);
              $con = 'App\\Entity\\' . ucwords($connect);
              $entity = $this->getDoctrine()->getRepository($EntityName)->findOneBy(['id' => $field]);
              $entityManager = $this->getDoctrine()->getManager();
              $argsId = $productgroup;
              $args = $entityManager->getReference($connect , $argsId);
              $entity->setProductgroup($args);

              $entityManager->flush();
              $response = new Response();
              $response->send();
              return $response;

            }

Сообщение об ошибке:

Класс «Группа продуктов» не существует

Ответы [ 2 ]

0 голосов
/ 05 февраля 2019

рабочий раствор:

     /**
        * @Route("/row/{entity}/{relation}/{entity_id}/{relation_id}", name="row", methods={"POST"})
        */

        public function row($entity, $relation, $entity_id, $relation_id, Request $request) {

          $entity_name = 'App\\Entity\\' . ucwords($entity);
          $relation_name = 'App\\Entity\\' . ucwords($relation);

          $entityManager = $this->getDoctrine()->getManager();
          $enity_reference = $entityManager->getReference($entity_name, $entity_id);
          $relation_reference = $entityManager->getReference($relation_name, $relation_id);

          $func = 'add'.$relation;
          $enity_reference->$func($relation_reference);
          $entityManager->persist($enity_reference);
          $entityManager->persist($relation_reference);

          $entityManager->flush();
          $response = new Response();
          $response->send();
          return $response;

        }
0 голосов
/ 04 февраля 2019

Я не могу сказать вам, почему возникает ошибка класса, но вы не можете передать объект-сущность методу, который ожидает ArrayCollection, здесь:

/* args is not an ArrayCollection */
$args = $entityManager->getReference($connect , $argsId);
$entity->setProductgroup($args); 

Возможно, вам следует использовать addProductgroup ().

Если $ argsId - это массив идентификаторов, вы должны получить ссылку на каждый из них и добавить объекты-призраки в коллекцию ArrayCollection.

...