我的控制器PurchaseOrder控制器
<?php
namespace CJ\BusinessBundle\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use CJ\BusinessBundle\Entity\PurchaseOrder;
use CJ\BusinessBundle\Form\PurchaseOrderType;
/**
* PurchaseOrder controller.
*
* @Route("/purchaseorder")
*/
class PurchaseOrderController extends Controller
{
/**
* Lists all PurchaseOrder entities.
*
* @Route("/", name="purchaseorder")
* @Method("GET")
* @Template()
*/
public function indexAction()
{
$em = $this->getDoctrine()->getManager();
$entities = $em->getRepository('CJBusinessBundle:PurchaseOrder')->findAll();
return array(
'entities' => $entities,
);
}
/**
* Creates a new PurchaseOrder entity.
*
* @Route("/", name="purchaseorder_create")
* @Method("POST")
* @Template("CJBusinessBundle:PurchaseOrder:new.html.twig")
*/
public function createAction(Request $request)
{
$entity = new PurchaseOrder();
$form = $this->createForm(new PurchaseOrderType(), $entity);
$form->bind($request);
if ($form->isValid()) {
$em = $this->getDoctrine()->getManager();
$em->persist($entity);
$em->flush();
return $this->redirect($this->generateUrl('purchaseorder_show', array('id' => $entity->getId())));
}
return array(
'entity' => $entity,
'form' => $form->createView(),
);
}
/**
* Displays a form to create a new PurchaseOrder entity.
*
* @Route("/new", name="purchaseorder_new")
* @Method("GET")
* @Template()
*/
public function newAction()
{
$entity = new PurchaseOrder();
$form = $this->createForm(new PurchaseOrderType(), $entity);
$purchase = $this->get('cj.businessbundle.purchase');
$purchase->newAction();
return array(
'entity' => $entity,
'form' => $form->createView(),
);
}
/**
* Finds and displays a PurchaseOrder entity.
*
* @Route("/{id}", name="purchaseorder_show")
* @Method("GET")
* @Template()
*/
public function showAction($id)
{
$em = $this->getDoctrine()->getManager();
$entity = $em->getRepository('CJBusinessBundle:PurchaseOrder')->find($id);
if (!$entity) {
throw $this->createNotFoundException('Unable to find PurchaseOrder entity.');
}
$deleteForm = $this->createDeleteForm($id);
return array(
'entity' => $entity,
'delete_form' => $deleteForm->createView(),
);
}
/**
* Displays a form to edit an existing PurchaseOrder entity.
*
* @Route("/{id}/edit", name="purchaseorder_edit")
* @Method("GET")
* @Template()
*/
public function editAction($id)
{
$em = $this->getDoctrine()->getManager();
$entity = $em->getRepository('CJBusinessBundle:PurchaseOrder')->find($id);
if (!$entity) {
throw $this->createNotFoundException('Unable to find PurchaseOrder entity.');
}
$editForm = $this->createForm(new PurchaseOrderType(), $entity);
$deleteForm = $this->createDeleteForm($id);
return array(
'entity' => $entity,
'edit_form' => $editForm->createView(),
'delete_form' => $deleteForm->createView(),
);
}
/**
* Edits an existing PurchaseOrder entity.
*
* @Route("/{id}", name="purchaseorder_update")
* @Method("PUT")
* @Template("CJBusinessBundle:PurchaseOrder:edit.html.twig")
*/
public function updateAction(Request $request, $id)
{
$em = $this->getDoctrine()->getManager();
$entity = $em->getRepository('CJBusinessBundle:PurchaseOrder')->find($id);
if (!$entity) {
throw $this->createNotFoundException('Unable to find PurchaseOrder entity.');
}
$deleteForm = $this->createDeleteForm($id);
$editForm = $this->createForm(new PurchaseOrderType(), $entity);
$editForm->bind($request);
if ($editForm->isValid()) {
$em->persist($entity);
$em->flush();
return $this->redirect($this->generateUrl('purchaseorder_edit', array('id' => $id)));
}
return array(
'entity' => $entity,
'edit_form' => $editForm->createView(),
'delete_form' => $deleteForm->createView(),
);
}
/**
* Deletes a PurchaseOrder entity.
*
* @Route("/{id}", name="purchaseorder_delete")
* @Method("DELETE")
*/
public function deleteAction(Request $request, $id)
{
$form = $this->createDeleteForm($id);
$form->bind($request);
if ($form->isValid()) {
$em = $this->getDoctrine()->getManager();
$entity = $em->getRepository('CJBusinessBundle:PurchaseOrder')->find($id);
if (!$entity) {
throw $this->createNotFoundException('Unable to find PurchaseOrder entity.');
}
$em->remove($entity);
$em->flush();
}
return $this->redirect($this->generateUrl('purchaseorder'));
}
/**
* Creates a form to delete a PurchaseOrder entity by id.
*
* @param mixed $id The entity id
*
* @return Symfony\Component\Form\Form The form
*/
private function createDeleteForm($id)
{
return $this->createFormBuilder(array('id' => $id))
->add('id', 'hidden')
->getForm()
;
}
}
Serivces.yml
services:
cj.businessbundle.purchase:
class: CJ\BusinessBundle\Controller\PurchaseController
访问控制器内部的方法[Not Purchase Controller]
$purchase = $this->get('cj.businessbundle.purchase');
$purchase->newAction();
获取错误:
FatalErrorException:错误:在/home/cj/public_html/Symfony/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php行中调用非对象上的成员函数get() 163
新行动确实存在
我认为在定义服务时我做错了什么
答案 0 :(得分:6)
当您调用$this->get("your.service")
时,您要求依赖注入容器加载该服务。您正在请求它加载一个控制器,它扩展了Symfony的控制器类,扩展了ContainerAware。您收到的错误是因为加载的控制器可能正在尝试使用$this->container->get("request")
访问“请求”之类的服务,但未设置$this->container
。
ContainerAware有一个方法setContainer
,您可以在使用services.yml中的calls:
参数设置服务时实际运行该方法:
services:
cj.businessbundle.purchase:
class: CJ\BusinessBundle\Controller\PurchaseController
calls:
- [setContainer, [@service_container]]
Symfony2为加载的控制器(PurchaseOrderController)执行此操作,但如果您只是自己加载控制器类,则不会这样做。
将PurchaseController中的newAction(或所需逻辑)作为服务本身提取,而不是将整个控制器设置为服务,这样会更好。这样,Purchase和PurchaseOrder控制器都可以调用服务来创建新的购买(或者newAction所做的任何操作),并且每次都不会加载整个控制器。查看FOS user bundle user manager以获取服务的良好示例或http://symfony.com/doc/2.1/book/service_container.html#what-is-a-service