2

假设一个Human可以Item在他的口袋里有(s)。每种ItemHuman.

当他使用一个项目时,它会转到ItemController

class ItemController extends Controller
{
    public function useAction() {
       // Human
        $human = new Human();

       // Item
        $request = Request::createFromGlobals();
        $item_id = $request->request->get('item_id', 0);
        $item = new Item($item_id);

        // Different effects depending on the Item used
        switch($item->getArticleId()) {

            case 1: $this->heal($human, $item, 5); break; // small potion
            case 2: $this->heal($human, $item, 10); break; // medium potion
            case 3: $this->heal($human, $item, 15); break; // big potion

        }

    }

    // The following Heal Function can be placed here ?
    private function heal($human, $item, $life_points) {
        $human->addLife($life_points);
        $item->remove();
        return new Response("You have been healed of $life_points");
    }
}

heal function可以放在这里吗?我相信它不应该在控制器中。但我也认为它不应该放在里面Item Entity(因为 Response,而且因为它使用 $Human)

4

4 回答 4

4

这取决于。我对这类问题的推理是:如果我只使用控制器中的功能,它可以留在那里。但如果它可能是一个共享功能,我将为它创建一个服务。也许您希望能够通过命令或不同的控制器或其他东西来治愈人类。在这种情况下,为此使用共享代码是有意义的。

创建服务非常简单,并且使您能够将逻辑保存在共享位置。在我看来,控制器对于处理请求流更有用。

于 2012-06-28T07:21:52.980 回答
2

我认为你可以这样做:

1:继承

  class BaseHumanController extend Controller{

  public function heal($param1, $param2, $param3){

  //put logic here

  }

} 

//Extend from BaseHumanController in any controller for call heal() method
class ItemController extend BaseHumanController{

//....
 $this->heal(...)

} 

2:使用您的heal() 方法创建一个类,并将其配置为@Peter Kruithof 的服务

于 2012-06-28T12:37:37.770 回答
0

我绝对认为它会进入控制器。来自维基百科:

控制器调解输入,将其转换为模型或视图的命令。

如果您查看 symfony2 crud 生成器生成的删除函数,它会在实体上调用 remove:

/**
 * Deletes a Bar entity.
 *
 * @Route("/{id}/delete", name="bar_delete")
 * @Method("post")
 */
public function deleteAction($id)
{
    $form = $this->createDeleteForm($id);
    $request = $this->getRequest();

    $form->bindRequest($request);

    if ($form->isValid()) {
        $em = $this->getDoctrine()->getEntityManager();
        $entity = $em->getRepository('FooBundle:Bar')->find($id);

        if (!$entity) {
            throw $this->createNotFoundException('Unable to find Bar entity.');
        }

        $em->remove($entity);
        $em->flush();
    }

    return $this->redirect($this->generateUrl('bar_index'));
}
于 2012-06-28T06:19:55.697 回答
0

我看不出它为什么不应该在控制器中。如果您只想在那里使用它,只需将其设为私有方法。

于 2012-06-28T13:20:37.870 回答