是否可以在控制器 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 ????
//...
}