dongying6659 2019-03-25 14:40
浏览 144
已采纳

Symfony - 如何从实体中删除数组中的特定元素

I have a Packages entity (manyToMany with the entityTypeUser that creates me in the DB the package_des_users entity). My Packages entity therefore contains an array of TypeUser (because a package can be assigned to several types of users).

I want to be able to delete one of the elements that are part of the TypeUser array of one of my packages.

My plan of action was:

  1. Retrieve the package to process
  2. Retrieve the name of the TypeUser to remove from the TypeUser array of the package.
  3. Do a check: If the package contains only one typeUser, the package is deleted directly. If it contains more than one, just delete the chosen TypeUser.

For now, I was able to recover the package to be processed as well as the name of the TypeUser to delete, and the number of TypeUser that contained my package. If it contains only one, it suppresses it well. The problem remains for the other case.

Being a beginner in Symfony 3.4, I have a hard time understanding how to do it right.

My controller.php function :

    /**
     * Deletes a paquet entity.
     *
     * @Route("/{id}/{type}/delete", name="paquets_delete")
     */
    public function deleteAction(Request $request, $id, $type)
    {
        $em = $this->getDoctrine()->getManager();
        $unPaquet = $em->getRepository('PagesBundle:Paquet')->find($id);

        $nbTypes = count($unPaquet->getTypeUser());

        if($nbTypes == 1)
        {
            $em->remove($unPaquet);
        }

        else
        {
            $am = $this->getDoctrine()->getManager();
            $leType = $am->getRepository('PagesBundle:TypeUser') 
->findByTypeUtilisateur($type);
            $em->$unPaquet->deleteTypeFromTypesUser($leType);
        }

        $em->flush();

        return $this->redirectToRoute('paquets_index');

My entity (paquet) function :


    /**  
     * @var \Doctrine\Common\Collections\Collection
     * @ORM\ManyToMany(targetEntity="TypeUser")  
     * @ORM\JoinTable(name="Packages_des_TypesUser") 
     * @ORM\JoinColumn(nullable=false)
     */  
    private $typeUser;

    public function __construct()
    {
        $this->typeUser = new ArrayCollection();
    }

    /** 
     * Get TypeUser 
     * 
     * @return Site\PagesBundle\Entity\TypeUser 
     */ 
    public function getTypeUser() 
    { 
        return $this->typeUser; 
    }

    public function deleteTypeFromTypesUser(TypeUser $type)
    {
        $this->typeUser->removeElement($type);
    }

I would therefore like to be able to retrieve the corresponding TypeUser object (the result being unique) from the controller so that I can pass it as a parameter to a function that will take care of removing it from the TypeUser array of my package. Then that translates into the database.

Thanks for your help !

  • 写回答

2条回答 默认 最新

  • doumingo04696 2019-03-25 14:56
    关注

    You have to change it on the class, you are calling the $unPaquet property of the entity manager, and then calling to a function that does not exist. Also you forgot to check if there is more than one or you would be deleting from an empty array.

        /**
         * Deletes a paquet entity.
         *
         * @Route("/{id}/{type}/delete", name="paquets_delete")
         */
        public function deleteAction(Request $request, $id, $type)
        {
            $em = $this->getDoctrine()->getManager();
            $unPaquet = $em->getRepository('PagesBundle:Paquet')->find($id);
    
            $nbTypes = count($unPaquet->getTypeUser());
    
            if($nbTypes == 1)
            {
                $em->remove($unPaquet);
            }
    
            else if ( $nbTypes > 1 )
            {
                $leType = $em->getRepository('PagesBundle:TypeUser') 
    ->findByTypeUtilisateur($type);
                $unPaquet->deleteTypeFromTypesUser($leType);
            }
    
            $em->flush();
    
            return $this->redirectToRoute('paquets_index');
        }
    

    The "Catchable Fatal Error: Argument 1 passed to Site\PagesBundle\Entity\Paquet::deleteTypeFromTypesUser() must be an instance of Site\PagesBundle\Entity\TypeUser, array given " error is due to the find returning an array. You have to change that method. If you need help over there show the code please.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 网络科学导论,网络控制
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)