mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
[更新]去除data::save字段严格检查
This commit is contained in:
parent
b6f3ea5b9c
commit
d65baa4743
@ -49,6 +49,8 @@ class DataService
|
|||||||
* @param string $sequence
|
* @param string $sequence
|
||||||
* @param string $type
|
* @param string $type
|
||||||
* @return bool
|
* @return bool
|
||||||
|
* @throws \think\Exception
|
||||||
|
* @throws \think\exception\PDOException
|
||||||
*/
|
*/
|
||||||
public static function deleteSequence($sequence, $type = 'SYSTEM')
|
public static function deleteSequence($sequence, $type = 'SYSTEM')
|
||||||
{
|
{
|
||||||
@ -87,15 +89,17 @@ class DataService
|
|||||||
* @param string $key 条件主键限制
|
* @param string $key 条件主键限制
|
||||||
* @param array $where 其它的where条件
|
* @param array $where 其它的where条件
|
||||||
* @return bool
|
* @return bool
|
||||||
|
* @throws \think\Exception
|
||||||
|
* @throws \think\exception\PDOException
|
||||||
*/
|
*/
|
||||||
public static function save($dbQuery, $data, $key = 'id', $where = [])
|
public static function save($dbQuery, $data, $key = 'id', $where = [])
|
||||||
{
|
{
|
||||||
$db = is_string($dbQuery) ? Db::name($dbQuery) : $dbQuery;
|
$db = is_string($dbQuery) ? Db::name($dbQuery) : $dbQuery;
|
||||||
$where[$key] = isset($data[$key]) ? $data[$key] : '';
|
$where[$key] = isset($data[$key]) ? $data[$key] : '';
|
||||||
if ($db->where($where)->count() > 0) {
|
if ($db->where($where)->count() > 0) {
|
||||||
return $db->where($where)->update($data) !== false;
|
return $db->strict(false)->where($where)->update($data) !== false;
|
||||||
}
|
}
|
||||||
return $db->insert($data) !== false;
|
return $db->strict(false)->insert($data) !== false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -103,6 +107,8 @@ class DataService
|
|||||||
* @param \think\db\Query|string $dbQuery 数据查询对象
|
* @param \think\db\Query|string $dbQuery 数据查询对象
|
||||||
* @param array $where 额外查询条件
|
* @param array $where 额外查询条件
|
||||||
* @return bool|null
|
* @return bool|null
|
||||||
|
* @throws \think\Exception
|
||||||
|
* @throws \think\exception\PDOException
|
||||||
*/
|
*/
|
||||||
public static function update(&$dbQuery, $where = [])
|
public static function update(&$dbQuery, $where = [])
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user