在子控制器中获取父变量

时间:2014-01-19 03:02:58

标签: php cakephp http-redirect

Lessons属于Courses。我想要一个额外的课程,重定向到该课程的课程索引,而不是整体课程索引。

我在我的add()函数中试过这个:

return $this->redirect(array('controller' => 'courses', 'action' => 'view', $this->Lesson->Course->$id));

但是重定向不起作用。我怎样才能让它回归 http://www.example.com/courses/view/2

谢谢!

1 个答案:

答案 0 :(得分:0)

$ this-> Lesson-> Course-> $ id不会为您提供开箱即用的课程ID。

我认为课程ID已经在请求中,$ this-> request-> data ['Lesson'] ['course_id'];