所以我试图为我的应用程序制作一个 CRUD。我已经设置了一个控制器,如下所示:
class Clients extends CI_Controller {
public function __construct() {
parent::__construct();
session_start();
$this->c = new Client();
$this->u = new User();
}
function index() {
$data['current_view'] = 'client_view';
$data['header'] = 'Меню клиентов';
$data['clients'] = $this->getClients();
$this->load->view('main_view',$data);
}
function getClients() {
$this->u->where('username',$_SESSION['username'])->get();
$c = $this->c->where('user_id',$this->u->id)->get();
return $c;
}
function delClient() {
$this->c->where('client_id', $this->uri->segment(3))->delete();
$this->c->skip_validation()->save();
$this->index();
}
}
但是,当我尝试在客户端上执行删除时,我收到一个 db 错误:
您必须使用“set”方法来更新条目。
文件名:C:\OpenServer\domains\localhost\system\database\DB_active_rec.php
行号:1174
这可能是什么原因?我在这里发现了一个类似的问题,但我认为情况并非如此。
编辑:客户端模型:
class Client extends DataMapper {
public $has_one = array('user');
public function __construct($id = NULL) {
parent::__construct($id);
}
}