duanoucuo7045 2017-06-07 20:18
浏览 26
已采纳

Symfony2.8错误在不使用doctrine的对象上下文中时使用$ this

I am tryin to call a function from my controller and return the $todolist to my controller. But i get this error, when i leave this function inside the controller it works fine, but i don't want it to be in the controller.

This is my controller

namespace AppBundle\Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configurationoute;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;

use AppBundle\Entity\Todo;
use AppBundle\Model\TodoModel;

class TodoController extends Controller
{
    /**
    * @Route("/", name="homepage")
    */
    public function ShowList()
    {
        $todolist = TodoModel::getTodolist();

        $html = $this->container->get('templating')->render(
            'todolist/todolist.html.twig',
            array('todolist' => $todolist)
        );

        return new response($html);
    }
}

This is my model

namespace AppBundle\Model;

use AppBundle\Entity\Todo;

class TodoModel 
{

     public function getTodolist()
     {
       $repository = $this->getDoctrine()
           ->getRepository('AppBundle:Todo');
       $todolist = $repository->findAll();
       return $todolist;
    }

}
  • 写回答

2条回答 默认 最新

  • dqjmq28248 2017-06-08 11:55
    关注

    Right way to do it is:

    public function ShowList()
    {
        $entityManager = $this->get('doctrine.orm.entity_manager');
        $repository = $entityManager->getRepository(Todo::class);
        $todolist = $repository->findAll();
    
        $html = $this->container->get('templating')->render(
            'todolist/todolist.html.twig',
            array('todolist' => $todolist)
        );
    
        return new Response($html);
    }
    

    If you want to do some kind of abstraction with "TODO provider", then better naming for it is TodoProvider instead of TodoModel.

    And it should look like:

    namespace AppBundle\Todo;
    
    use Doctrine\ORM\EntityManager;
    use AppBundle\Entity\Todo;
    
    class TodoProvider
    {
        /**
         * @var EntityManager
         */
        private $entityManager;
    
        /**
         * TodoProvider constructor.
         * @param EntityManager $entityManager
         */
        public function __construct(EntityManager $entityManager)
        {
            $this->entityManager = $entityManager;
        }
    
        /**
         * @return Todo[]
         */
        public function getAllTodos()
        {
            return $this->entityManager->getRepository(Todo::class)->findAll();
        }
    }
    

    Then register TodoProvider as service (http://symfony.com/doc/current/service_container.html) and get in controller with $this->get('my_todo_provider')

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

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大