我在使用 codeigniter 时很开心,但目前有一个烦人的小问题,当我尝试删除一个项目时,我得到“消息:未定义的属性:Site::$url”我唯一的猜测可能是 url 有问题助手被包括在内?我在配置中自动加载它。
这是我在模型中的删除功能
function delete_record()
{
$this->db->where('id', $this->url->segment(3));
$this->db->delete('items');
}
在这里我在视图中调用它:
<?php echo $row->subject; ?> <?php echo anchor("site/delete/$row->id","Delete");?>
这是控制器:
function delete(){
$this->Site_model->delete_record();
$this->index();
}
并且只是为了确保我没有做错任何事情..这是在配置中的自动加载中:
$autoload['helper'] = array('url', 'form');
$autoload['libraries'] = array('database');
非常感谢任何帮助!