我正在构建一个 Cake PHP 应用程序。不同的用户有不同的属性,所以我使用两个对象来存储一个用户,例如
- 用户 hasOne Student / Student 属于用户
- 用户 hasOne Lecturer / Lecturer 属于用户
配置文件编辑页面将允许用户编辑两个对象的所有详细信息。我已经设置了表单并使用了 saveAll 所以保存了两个对象。我的问题是根据用户的角色动态填充下拉菜单。
例如县域。管理员没有地址,而学生和讲师有。我已经设置了我的 Country 模型来查找我所有的县,并将它们放入选择框中的 opt-groups 中(按国家/地区对它们进行排序,如下所示Dropdown list with dyanmic optgroup)
我可以在 Student/LecturersController 中很好地做到这一点,因为它们允许我在设置 $uses 变量时访问 Country 模型。我不想在 UsersController 中执行此操作,因为并非所有用户角色都有地址,并且地址永远不会存储在 User 对象中。我尝试将代码放入模型中,但后来我不知道如何访问模型中的其他模型。到目前为止,我在构建应用程序时没有遇到任何问题,而且我觉得我可能在某个地方做出了错误的设计决定,或者有些东西我没有正确理解。
本质上我是在问如何实现setForForm()
下面的功能。
public function edit() {
//get user
$user = $this->Auth->user();
//get role
$role = $user['User']['role'];
if ($this->request->is('post') || $this->request->is('put')) {
//get IDs
$userID = $user['User']['id'];
$roleID = $user[$role]['id'];
//set IDs
$this->request->data[$role]['user_id'] = $userID;
$this->request->data[$role]['id'] = $roleID;
$this->request->data['User']['id'] = $userID;
//delete data for role that is not theirs
foreach ($this->request->data as $key => $value) {
if($key !== 'User' && $key !== $role) {
unset($this->request->data[$key]);
}
}
if ($this->User->saveAll($this->request->data)) {
//update logged in user
$this->Auth->login($this->User->$role->findByUserId($userID));
$this->Session->setFlash('Changes saved successfully.');
} else {
$this->Session->setFlash(__('Please try again.'));
}
}
//set role for easy access
$this->set(compact('role'));
//sets required variables for role form
$this->User->$role->setForForm();
//fills in form on first request
if (!$this->request->data) {
$this->request->data = $user;
}
//render form depending on role
$this->render(strtolower('edit_' . $role));
}
//this is the method I would like to implement in the Student/Lecturer model somehow
public function setForForm() {
$counties = $this->Country->getCountiesByCountry();
$homeCounties = $counties;
$termCounties = $counties;
$this->set(compact('homeCounties', 'termCounties'));
}