where = $where; $this->query = $this->buildQuery($dbQuery); $this->field = empty($field) ? $this->query->getPk() : $field; $this->value = $this->app->request->post($this->field, null); // 主键限制处理 if (!isset($this->where[$this->field]) && is_string($this->value)) { $this->query->whereIn($this->field, explode(',', $this->value)); } // 前置回调处理 if (false === $this->controller->callback('_delete_filter', $this->query, $where)) { return null; } // 执行删除操作 if (method_exists($this->query, 'getTableFields') && in_array('is_deleted', $this->query->getTableFields())) { $result = $this->query->where($this->where)->update(['is_deleted' => '1']); } else { $result = $this->query->where($this->where)->delete(); } // 结果回调处理 if (false === $this->controller->callback('_delete_result', $result)) { return $result; } // 回复前端结果 if ($result !== false) { $this->controller->success('数据删除成功!', ''); } else { $this->controller->error('数据删除失败, 请稍候再试!'); } } }