0

我正在构建一个 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'));
}
4

3 回答 3

0

尝试这样的事情:

public function setForForm() {
    App::import('model', 'Country');
    $Country = New Country();
    $counties = $Country->getCountiesByCountry();
    $homeCounties = $counties;
    $termCounties = $counties;
    $this->set(compact('homeCounties', 'termCounties'));
}

我不知道这是不是最好的解决方案,但它至少可以工作:)

已编辑

这是另一个错误。不建议将变量从模型设置到视图,您可以返回将设置的数据,然后在编辑功能中通常将其设置为视图,但无论如何,如果您需要从模型设置到视图,您可以将控制器类加载到您的模型使用App::import();和使用set函数。

于 2013-06-03T14:27:15.087 回答
0

不确定我的问题是否正确,但我认为您想要的是以下内容:

User hasOne Student / Student belongs to User

Student hasOne Country / Country belongsTo Student

(讲师也一样)

然后从您的 UsersController 中,您可以执行以下操作:

$this->User->Student->Country->findCountiesByCountry();

希望有帮助

- 编辑:

如果你想使用 $role 而不是 Student/Lecturer 你必须这样做:

$this->User->{$role}->Country->findCountiesByCountry();
于 2013-06-03T14:21:50.237 回答
0

最后,我决定只在用户控制器中加载县,而不管表单是否需要它们,因为 Admin 是唯一不需要它们的用户。

于 2013-06-12T21:13:37.090 回答