mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
90 lines
2.9 KiB
PHP
90 lines
2.9 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | Library for ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://library.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary
|
||
// | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace library\helper;
|
||
|
||
use library\Helper;
|
||
use think\db\Query;
|
||
|
||
/**
|
||
* Class SaveHelper
|
||
* @package library\helper
|
||
*/
|
||
class SaveHelper extends Helper
|
||
{
|
||
/**
|
||
* 表单扩展数据
|
||
* @var array
|
||
*/
|
||
protected $data;
|
||
|
||
/**
|
||
* 表单额外更新条件
|
||
* @var array
|
||
*/
|
||
protected $where;
|
||
|
||
/**
|
||
* 数据对象主键名称
|
||
* @var array|string
|
||
*/
|
||
protected $pkField;
|
||
|
||
/**
|
||
* 数据对象主键值
|
||
* @var string
|
||
*/
|
||
protected $pkValue;
|
||
|
||
/**
|
||
* 逻辑器初始化
|
||
* @param Query|string $dbQuery
|
||
* @param array $data 表单扩展数据
|
||
* @param string $field 数据对象主键
|
||
* @param array $where 额外更新条件
|
||
* @return boolean
|
||
* @throws \think\Exception
|
||
* @throws \think\exception\PDOException
|
||
*/
|
||
public function init($dbQuery, $data = [], $field = '', $where = [])
|
||
{
|
||
$this->where = $where;
|
||
$this->query = $this->buildQuery($dbQuery);
|
||
$this->data = empty($data) ? $this->app->request->post() : $data;
|
||
$this->pkField = empty($field) ? $this->query->getPk() : $field;
|
||
$this->pkValue = $this->app->request->post($this->pkField, null);
|
||
// 主键限制处理
|
||
if (!isset($this->where[$this->pkField]) && is_string($this->pkValue)) {
|
||
$this->query->whereIn($this->pkField, explode(',', $this->pkValue));
|
||
if (isset($this->data)) unset($this->data[$this->pkField]);
|
||
}
|
||
// 前置回调处理
|
||
if (false === $this->controller->callback('_save_filter', $this->query, $this->data)) {
|
||
return false;
|
||
}
|
||
// 执行更新操作
|
||
$result = $this->query->where($this->where)->update($this->data) !== false;
|
||
// 结果回调处理
|
||
if (false === $this->controller->callback('_save_result', $result)) {
|
||
return $result;
|
||
}
|
||
// 回复前端结果
|
||
if ($result !== false) {
|
||
$this->controller->success('数据更新成功!', '');
|
||
} else {
|
||
$this->controller->error('数据更新失败, 请稍候再试!');
|
||
}
|
||
}
|
||
} |