Cakephp 1.3 用于 AjaxHelper 的 JsHelper

发布于 2024-08-26 18:28:33 字数 436 浏览 7 评论 0原文

我开始使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆头 2024-09-02 18:28:33

使用 $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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文