已解决
Model.php 中行621附近 $result = $this->db()->insert($this->data, $replace);修正为 $result = $this->db()->insert($data, $replace);
行544附近 if (!empty($where)) {
$this->isUpdate = true;
}
改为 if (!empty($where)) {
$this->isUpdate = true;
}else{
$this->isUpdate = false;
}
最佳答案