cakephp:将变量从控制器传递到视图时出现未定义的变量错误

发布于 2024-12-05 16:11:27 字数 414 浏览 1 评论 0原文

当我在注册页面中单击提交时,我收到 “通知 (8):未定义的变量:id [APP\views\merry_parents\report_card.ctp”。

我只是想通过 $this->data['MerryParent']['id']merry_parents_controller 使用$this->set($id,$this->data['MerryParent']['id']);

有人能告诉我我做错了什么吗?提前致谢。

以下是我的代码:

//report_card.ctp

 <?php
     echo 'HALLO';
     echo $id;
 ?>

When I click submit in signup page, I'm getting "Notice (8): Undefined variable: id [APP\views\merry_parents\report_card.ctp".

I'm just trying to pass $this->data['MerryParent']['id'] from merry_parents_controller to the report_card view using $this->set($id,$this->data['MerryParent']['id']);

Can someone tell me on what i'm doing wrong? thanks in advance.

following is my code:

//report_card.ctp

 <?php
     echo 'HALLO';
     echo $id;
 ?>

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

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

发布评论

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

评论(1

聚集的泪 2024-12-12 16:11:27

使用:

$this->set('id', $this->data['MerryParent']['id']);

第一个参数是所需的名称​​作为字符串,而不是作为变量。

Use:

$this->set('id', $this->data['MerryParent']['id']);

The first argument is the desired name as a string, not as a variable.

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