Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ボタンをクリックして、次のようにdiv内のコントローラーのアクションを更新したい:
$('.navMenuButton').click(function(){ $('#workarea').load('/controller/action'); })
jquery load() メソッドを使用して CakePHP でそれを行うことはできますか? ところで、cakephp'2.x のドキュメントは jshelper についてあまり役に立ちませんでした。ありがとう!!!
はい、できます
ページ レイアウト テンプレートを使用してケーキを停止し、ビューを返すだけです。
ビューに RequestHandler コンポーネントを含めるか、レイアウトを ajax に設定することができます。
$this->layout = "ajax";