我想将值从一个控制器传递到另一个控制器。例如,我有一个会议控制器,我想创建一个新事件。我想将会议 ID 传递给事件,以确保这两个对象已关联。我想使用 beforeFilter 方法存储在 ivar $conference中。
这是我在事件控制器中的先前过滤器函数
public function beforeFilter() {
parent::beforeFilter();
echo '1 ' + $this->request->id;
echo '2 ' + $this->request['id'];
echo $this->request->params['id'];
if(isset( $this->request->params['id'])){
$conference_id = $this->request->params['id'];
}
else{
echo "Id Doesn't Exist";
}
}
每当我将网址更改为以下内容时:
http://localhost:8888/cake/events/id/3
或
http://localhost:8888/cake/events/id:3
我收到一个错误,说未定义 id。
我应该怎么做?
当您通过URL传递数据时,您可以通过以下方式访问它
$this->passedArgs['variable_name'];
例如,如果您的网址是:
http://localhost/events/id:7
然后,您可以使用此行访问该ID
$id = $this->passedArgs['id'];
当您访问通过 url 接受参数的控制器函数时,您可以像使用任何其他变量一样使用这些参数,例如,假设您的 url 如下所示
http://localhost/events/getid/7
然后,控制器函数应如下所示:
public function getid($id = null){
// $id would take the value of 7
// then you can use the $id as you please just like any other variable
}
在Conferences
控制器中
$this->Session->write('conference_id', $this->request->id); // or the variable that stores the conference ID
在Events
控制器中
$conferenceId = $this->Session->read('conference_id');
当然,最重要的是你需要
public $components = array('Session');