如何在 CakePHP 中将参数从一个控制器传递到另一个控制器?

发布于 2024-09-04 02:42:28 字数 41 浏览 3 评论 0原文

谁能告诉我如何将参数传递给 cakephp 中另一个控制器中的函数?

Can anyone tell me how to pass parameters to a function in another controller in cakephp?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

扛起拖把扫天下 2024-09-11 02:42:28

你怎么称呼那个控制器?如果您要重定向用户并希望传递一些 URL 参数(这些参数将传递给控制器​​操作),只需执行以下操作:

$this->redirect(array('controller' => 'foo', 'action' => 'bar', $myParam));

How are you calling that controller? If you're redirecting the user and want to pass some URL parameters (which will be passed to the controller action), just do this:

$this->redirect(array('controller' => 'foo', 'action' => 'bar', $myParam));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文