CodeIgniter:我的upsert函数不能与my_model / my_controller一起使用

时间:2012-09-25 03:25:34

标签: codeigniter function upsert

使用my_model& my_controller本月第一次在CodeIgniter中,我想我几乎有这个工作。

我有一个插入功能正常工作,现在我正在尝试添加更新,如果有ID。

这是我的代码:

function upsert_client($client_id = 0)
{
    load_model('client_model');
    $this->insertMethodJS();

    $this->fields['client'] = $this->_prototype_client();

    $user_id = get_user_id();
    $company_id = get_company_id();

    if ($client_id)
    {
        $this->data['client'] = $this->client_model->get_record($client_id);
    }   



    if (!$this->ion_auth->in_group(GROUP_NAME_MANAGER, $user_id))
    {
        redirect('members/dashboard');
    }

    if ($_POST)
    {
        $this->load->helper('string');  

        if ($this->_validate_client())
        {   

        $fields = $this->input->post(null , TRUE);
        $fields['user_id'] = $user_id;
        $fields['company_id'] = $company_id;
        $fields['active'] = 1;

            if ($client_id)
            {
            $fields['id'] = $this->client_model->get_record($client_id);    
            unset($fields['billing']);
            $this->client_model->update($client_id, $fields);       
            }

            else 
            {
            unset($fields['billing']);
            $this->client_model->insert($fields);
            redirect('members/clients/manage_clients');
            }

        }
    }

    $this->template->write_view('content',$this->base_path.'/'.build_view_path(__METHOD__), $this->data);           
    $this->template->render();
}



function _prototype_client()
{
    $fields = array();

    $fields['id']   = 0;
    $fields['name'] = '';           

    return $fields;
}

从我的client_model:

class Client_model extends MY_Model {

function get_record($client_id)
{

    $query = $this->db->select('id')
    ->where(array('id'=>$client_id))
    ->get('clients');
    return $query->row_array();
}

}

每当我尝试编辑“客户端”时,它只会插入一个新的...我目前正在尝试编辑的是“名称”字段。

我的编辑按钮:

<td><a href="add_client/<?= $client->id; ?>"><button class="btn btn-inverse" style="float: right;" type="button">Edit</button></a></td>

感谢任何帮助,谢谢!如果您需要任何其他详细信息,请与我们联系......

2 个答案:

答案 0 :(得分:1)

我从未使用过离子验证器,但从我看到你有几个未正确引用的函数。

load_model('client_model');
//Should be
$this->load->model('client_model');

还应该引用其他一些函数

$this->function_name();
//Instead of just
function_name();
//Unless they are in another library
$this->lib_name->function_name();

我不确定这是否能很好地解决你的问题,而只是我注意到的一些事情。

答案 1 :(得分:1)

您的超链接指向'add_client',而您显示的功能称为'upsert'您是否正在调用正确的URL?