From d65baa474323b6bddb2d63bbf4d7c8e3278ade78 Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 6 Mar 2018 22:10:46 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=8E=BB=E9=99=A4data::sav?= =?UTF-8?q?e=E5=AD=97=E6=AE=B5=E4=B8=A5=E6=A0=BC=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- extend/service/DataService.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/extend/service/DataService.php b/extend/service/DataService.php index b7101d1f0..9956970fb 100644 --- a/extend/service/DataService.php +++ b/extend/service/DataService.php @@ -49,6 +49,8 @@ class DataService * @param string $sequence * @param string $type * @return bool + * @throws \think\Exception + * @throws \think\exception\PDOException */ public static function deleteSequence($sequence, $type = 'SYSTEM') { @@ -87,15 +89,17 @@ class DataService * @param string $key 条件主键限制 * @param array $where 其它的where条件 * @return bool + * @throws \think\Exception + * @throws \think\exception\PDOException */ public static function save($dbQuery, $data, $key = 'id', $where = []) { $db = is_string($dbQuery) ? Db::name($dbQuery) : $dbQuery; $where[$key] = isset($data[$key]) ? $data[$key] : ''; 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 array $where 额外查询条件 * @return bool|null + * @throws \think\Exception + * @throws \think\exception\PDOException */ public static function update(&$dbQuery, $where = []) {