1
class AppointmentsController extends AppController {
public function view($id = null) {
    if (!$this->Appointment->exists($id)) {
        throw new NotFoundException(__('Invalid appointment'));
    }
    $options = array('conditions' => array('Appointment.' . $this->Appointment->primaryKey => $id));
    $this->set('appointment', $this->Appointment->find('first', $options));

    $kk = $this->Appointment->find('first',  array('fields' => 'status', 'conditions' => array('Appointment.id' => $id)));
    $ss = reset($kk);
    $stats = reset($ss);
}
}

我已经通过从数据库中获取值来设置 $stats 并且我想在同一个控制器的另一个函数中使用

然后我想像这样使用

class AppointmentsController extends AppController {
function confirm(){
$stats = 'New';

}
}
4

3 回答 3

0

看到它是同一个类,你有没有尝试过使用$this->stats而不是局部变量?

于 2013-10-20T12:12:44.357 回答
0

您可以在第一个函数中调用另一个函数,例如

$this->confirm($status); // calling confirm function

function confirm($status)
{
 //use status as you want
}

或者您可以将状态设置为全局变量,然后您可以在任何函数中访问它。

于 2013-10-20T12:16:59.793 回答
0

我认为,您必须在模型中创建函数,该函数将通过 id 返回字段的值。

<?php
// model/AppModel.php

public function getFieldById($field='id', $id){
  return $this->field($field, array('id' => $id));
}


// in controller function you can access this like.

$status = $this->Appointment->getFieldById('status', $id); // $id will be appointment id.

?>
于 2013-10-20T12:20:15.853 回答