cakephp:将变量从控制器传递到视图时出现未定义的变量错误
当我在注册页面中单击提交时,我收到 “通知 (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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用:
第一个参数是所需的名称作为字符串,而不是作为变量。
Use:
The first argument is the desired name as a string, not as a variable.