Cakephp 1.3 用于 AjaxHelper 的 JsHelper
我开始使用 cakephp 并使用 AjaxHelper
$ajax->link('title', 'url', array('update' => 'mydiv' 制作了一个演示应用程序))
现在我想将其迁移到 cakephp 1.3,而 AjaxHelper 在 cake1.3 上已被弃用并将被删除,因此我想使用 JsHelper
来实现相同的目的,它取代了 < code>AjaxHelper 和 JavascriptHelper
我只是找不到如何做到这一点。
我想升级版本以在 cakephp 1.3 中使用开箱即用的 jQuery 并摆脱 Prototype javascript 库。 那么,有什么帮助吗?
我已经阅读了迁移指南,但尚未发现任何结果。
I'm start using cakephp and i made a demo app using AjaxHelper
$ajax->link('title', 'url', array('update' => 'mydiv'))
Now i want to migrate that to cakephp 1.3 and AjaxHelper is deprecated on cake 1.3 and will be removed, so i want to accomplish the same with JsHelper
which is replacing the functionality of AjaxHelper
and JavascriptHelper
I just can't find how to do that.
I want to upgrade the versions to use jQuery out of the box with cakephp 1.3 and get rid of Prototype javascript library.
so, any help ?
I've already read the migration guide and nothing found yet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
$js->link('title', 'url', array('update'=>'mydiv'))
不要忘记视图中的
$js->writeBuffer()
。请查看此处的手册。
Use
$js->link('title', 'url', array('update'=>'mydiv'))
Don't forget to
$js->writeBuffer()
in the view.Take a look at manual here.