ページに表示される記事の数を更新するコントローラーに対して ajax 呼び出しを行っています。ajax リクエストを処理するコントローラーにアクションを作成しました。ここを参照してください:
public function articleswitchAction(){
$this->view->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender(true);
$tileLayout = $this->_request->getParam('tc');
$landscape = 14;
$portrait = 16;
if ($tileLayout == "portrait"){
$limit = $portrait;
}elseif ($tileLayout == "landscape"){
$limit = $landscape;
}else{
$limit = 15;
}
}
$limit 変数は同じコントローラー内の別のアクションで設定され、この変数は初期ビューを設定します。
AJAX 呼び出しで変数を変更した後、ビューを更新するにはどうすればよいですか?