zend framework 3如何在控制器中调用phtml文件

时间:2019-02-23 09:03:23

标签: zend-framework

我想在controller中获取html内容。 为此

public function posteemailAction(){
  $view=$this->render("auth-acl/email/_getemail.phtml");
   print_r($view);die;

}

任何人都可以帮助获取控制器中html的内容。 谢谢

1 个答案:

答案 0 :(得分:0)

尝试一下:

public function ajaxAction() {
        // Turns off the layout and the view
        $this->_helper->layout()->disableLayout(); 
        $this->_helper->viewRenderer->setNoRender(true);

        // Creates a new instance of Zend_View
        $html = new Zend_View();

        // Set a script path for above view
        $html->setScriptPath(APPLICATION_PATH . '/views/scripts/your_custom_path/');

        // Assinging some data to the view
        $html->assign('myVar', $someValue);

        // Renders the view to specified variable
        $responseContent = $html->render('mycontent.phtml');

        echo $responseContent;
}