我是codeigniter的新手,刚刚在youtube上看了教程并遵循了步骤。我无法编辑或删除数据库的记录。我可以插入或获取记录,但update和delete函数总是返回错误。这是我的密码
控制器:
function __construct()
{
parent::__construct();
$this->load->model('Danhmuc_model');
}
function xoadm()
{
$id = $this->uri->segment(5);
$this->Danhmuc_model->delete($id);
$this->session->set_flashdata('mess',' Đã xóa thành công');
redirect(admin_url('danhmuc/xemdm'));
}
function suadm()
{
$data = array();
$id = $this->uri->segment(5);
$row = $this->Danhmuc_model->get_info($id);
if($this->input->post())
{
$this->form_validation->set_rules('ten_dm',"Tên danh mục",'required');
if($this->form_validation->run())
{
$tendm = $this->input->post('ten_dm');
$input = array('ten_dm'=>$tendm);
$this->Danhmuc_model->update($id,$input);
$this->session->set_flashdata('mess',' Đã sửa thành công');
}
}
$data['row'] = $row;
$data['temp'] = 'admin/danhmuc/suadm';
$this->load->view('admin/index',$data);
}
型号:
function update($id, $data)
{
if (!$id)
{
return FALSE;
}
$where = array();
$where[$this->key] = $id;
$this->update_rule($where, $data);
return TRUE;
}
/**
* Xoa row tu id
* $id : gia tri cua khoa chinh
*/
function delete($id)
{
if (!$id)
{
return FALSE;
}
//neu la so
if(is_numeric($id))
{
$where = array($this->key => $id);
}else
{
//xoa nhieu row
//$id = 1,2,3...
$where = $this->key . " IN (".$id.") ";
}
$this->del_rule($where);
return TRUE;
}
视图:编辑视图:
<td>
<input name="title" class="form-control" type="text" value="<?php echo $row['ten_dm'] ?>">
</td>
如果我用这个 value="<?php echo $row['ten_dm'] ?>"
,文本框不显示类别的标题(我正在插入和编辑类别)https://imgur.com/lw7fedahttps网址:imgur.com/z6tjnhl
但如果我用这个 value="<?php echo $row->ten_dm ?>"
,此消息出错
遇到php错误严重性:注意
消息:正在尝试获取非对象的属性
文件名:danhmuc/suadm.php
行号:13
我不明白哪里出错了,请帮帮我。提前谢谢。
暂无答案!
目前还没有任何答案,快来回答吧!