3

如何在 zend 框架 2 中执行 ajax 请求?我是 zend 框架 2 的初学者。所以我不确定如何禁用布局...对于我的 json 响应。

4

2 回答 2

2

听起来你想在 zf2 中执行 ajax 请求。

 $viewModel = new ViewModel();

 $viewModel->setTerminal(true);
 return $viewModel;

于 2012-10-22T03:14:39.873 回答
-1

你的ajax url必须是这样的baseurl+'/yourcontroller/ajax'

在你的 ajax 动作中

public function ajaxAction()
{
      $this->_helper->layout->disableLayout();
      $this->_helper->viewRenderer->setNoRender(); //ajax dont wants a view

     //you can access your params like this

     echo $this->_helper->getParam('paramname');exit;

}
于 2012-10-22T03:30:36.967 回答