コントローラー B内のコントローラーAから生成された html コードを取得することは可能ですか?
コントローラーA
/**
*
*
* @Route("/{user_id}/cart", name="user_cart")
* @Template()
*/
public function showCartAction($user_id)
{
$cart = $this->getCartManager()
->getUserCart($user_id);
return array(
'cart'=> cart
);
}
コントローラ B
/**
*
*
* @Route("/html", name="htmlGenerated")
* @Template()
*/
public function showHTMLAction()
{
$user_id = 3;
$html = //How to obtain the html generated by Controller A with UserId = 3 ????
//...
}