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 没有太大帮助,有人可以推荐一些书或告诉我如何使用 jshelper!谢谢!!!
是的你可以
您想停止使用页面布局模板并返回视图。
您可以在视图中包含 RequestHandler 组件或将布局设置为 ajax:
$this->layout = "ajax";