我希望在保存到新页面后重定向页面,该页面必须具有最后插入的ID(主键)
$crud = new grocery_CRUD();
// $crud->set_theme('datatables');
$crud->set_table('visitor');
$crud->set_subject('Visitor');
$crud->required_fields('id');
$crud->columns('event_type', 'name', 'number', 'email', 'company_name', 'designation');
$crud->set_relation('event_type', 'event_type', 'event');
$crud->field_type('visitor_type', 'dropdown', array('1' => 'Visitor', '2' => 'Exhibitor', '3' => 'Staff'));
$crud->callback_before_insert(array($this, 'insert_data_callback'));
$crud->callback_after_insert(array($this, 'after_insert'));
$crud->change_field_type('date', 'invisible');
$crud->set_lang_string('insert_success_message',
'Your data has been successfully stored into the database.<br/>Please wait while you are redirecting to the list page.
<script type="text/javascript">
window.location = "'.site_url('visitor').'/'.'barcode/'.$this->db->insert_id().'";
</script>
<div style="display:none">
'
);
其中window.location = "'.site_url('visitor').'/'.'barcode/'.$this->db->insert_id().'";
是主要的东西。
$this->db->insert_id()
始终返回0
我也尝试使用callback_after_insert
函数并添加了以下代码,但是这也总是返回0
function after_insert($post_array, $lastInsertedId) {
print_r($post_array);
echo " hello this is called ". $lastInsertedId. " ". $this->db->insert_id();
}
但这似乎不起作用,我只想要最后插入的ID并将其重定向到新页面。 我已经浏览了杂货店crud网站和stackoverflow以寻求解决方案,并尝试了几乎所有可能的选项,但似乎没有任何工作。
答案 0 :(得分:0)
试试这个:
$query = $this->db->query('SELECT LAST_INSERT_ID()');
$row = $query->row_array();
然后使用
访问id$row['LAST_INSERT_ID()'];
答案 1 :(得分:0)
在您的控制器上:
$crud->set_lang_string('insert_success_message',
'Your data has been successfully stored into the database. <br/>Please wait while you are redirecting to the list page.
<script type="text/javascript">
window.location = "'.site_url(strtolower(__CLASS__).'/redirect_to_url/').'";
</script>
<div style="display:none">
'
);
$crud->callback_after_insert(array($this,'_something_after_insert'));
然后在插入将insert_id添加到flash数据后进行回调
function _something_after_insert($post_array, $primary_key)
{
$this->session->set_flashdata('last_pk', $primary_key);
return true;
}
然后你的方法重定向
function redirect_to_url()
{
redirect(base_url('something/edit/'.$this->session->flashdata('last_pk')),'refresh');
}