您好我已经遇到过这个问题,我的解决方案很简单
创建用户 -> 创建 user_profiles -> 更新 user_profiles
请转到 TA 模型“用户”并添加此方法/功能
function update_user_profile($user_id, $data)
{
$this->db->where('user_id', $user_id);
$this->db->update($this->profile_table_name, $data);
}
制作 auth.php 的副本(以防万一)并在注册方法中进行一些调整(如下)请注意这里还有一些原始代码放在那里(我修改了我的)。
if ($this->form_validation->run()) {
// validation ok
if (!is_null(<here is some more code>)) {
$user_data = array(
'first_name' => $this->form_validation->set_value('first_name'),
'last_name' => $this->form_validation->set_value('last_name'),
);
//$this->load->model('tank_auth/users');
$this->users->update_user_profile($data['user_id'], $user_data); //update happens
} else {
$errors = $this->tank_auth->get_error_message();
foreach ($errors as $k => $v) $data['errors'][$k] = $this->lang->line($v);
}
}
编辑
以获取用户,您需要使用 SQL JOIN 作为示例显示(带有额外的 first_name/last_name)我希望你能明白
检索所有用户将其放入用户模型中
function get_all_users() {
$this->db->select('users.id, users.username, users.activated, users.banned, users.ban_reason, user_profiles.id as up_id, user_profiles.first_name, user_profiles.last_name');
$this->db->from('users');
$this->db->join('user_profiles', 'users.id = user_profiles.user_id');
return $this->db->get()->result();
}
检索一个用户(刚刚添加了 where 子句)
function get_ser($id){
$this->db->select('users.id, users.username, users.activated, users.banned, users.ban_reason, user_profiles.id as up_id, user_profiles.first_name, user_profiles.last_name');
$this->db->from('users');
$this->db->join('user_profiles', 'users.id = user_profiles.user_id');
$this->db->where('users.id', $id);
$q = $this->db->get();
return ($q->num_rows() > 0) ? $q->result()[0] : FALSE;
}