对我的控制器操作之一的 AJAX 请求当前返回整页 HTML。
我只希望它返回该特定操作的 HTML(.phtml 内容)。
以下代码通过手动禁用特定操作的布局来很好地解决问题:
$viewModel = new ViewModel();
$viewModel->setTerminal(true);
return $viewModel;
当检测到 AJAX 请求时,如何让我的应用程序自动禁用布局?我需要为此编写自定义策略吗?任何关于如何做到这一点的建议都非常感谢。
此外,我在我的应用程序 Module.php 中尝试了以下代码 - 它正确检测 AJAX,但 setTerminal() 没有禁用布局。
public function onBootstrap(EventInterface $e)
{
$application = $e->getApplication();
$application->getEventManager()->attach('route', array($this, 'setLayout'), 100);
$this->setApplication($application);
$this->initPhpSettings($e);
$this->initSession($e);
$this->initTranslator($e);
$this->initAppDi($e);
}
public function setLayout(EventInterface $e)
{
$request = $e->getRequest();
$server = $request->getServer();
if ($request->isXmlHttpRequest()) {
$view_model = $e->getViewModel();
$view_model->setTerminal(true);
}
}
想法?