diff --git a/config/session.php b/config/session.php index ffad7b51c..0820622c7 100644 --- a/config/session.php +++ b/config/session.php @@ -21,7 +21,7 @@ return [ // 存储连接 'store' => null, // 过期时间 - 'expire' => 1800, + 'expire' => 7200, // 文件前缀 'prefix' => '', ]; \ No newline at end of file diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index c06407c90..44bbc9d33 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -656,17 +656,17 @@ }, { "name": "topthink/think-orm", - "version": "v2.0.35", - "version_normalized": "2.0.35.0", + "version": "v2.0.36", + "version_normalized": "2.0.36.0", "source": { "type": "git", "url": "https://github.com/top-think/think-orm.git", - "reference": "f0bba0b15610d4015655ff6f07ea3d639212076f" + "reference": "f48dc09050f25029d41a66bfc9c3c403e4f82024" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/top-think/think-orm/zipball/f0bba0b15610d4015655ff6f07ea3d639212076f", - "reference": "f0bba0b15610d4015655ff6f07ea3d639212076f", + "url": "https://api.github.com/repos/top-think/think-orm/zipball/f48dc09050f25029d41a66bfc9c3c403e4f82024", + "reference": "f48dc09050f25029d41a66bfc9c3c403e4f82024", "shasum": "", "mirrors": [ { @@ -682,7 +682,7 @@ "psr/simple-cache": "^1.0", "topthink/think-helper": "^3.1" }, - "time": "2021-01-06T12:55:12+00:00", + "time": "2021-01-12T09:08:52+00:00", "type": "library", "installation-source": "dist", "autoload": { @@ -857,12 +857,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "97c42fca7d4cb972391a2d40d0fabfc942592a98" + "reference": "e85fb1701ebad407a3155d0758a84dc01d440679" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/97c42fca7d4cb972391a2d40d0fabfc942592a98", - "reference": "97c42fca7d4cb972391a2d40d0fabfc942592a98", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e85fb1701ebad407a3155d0758a84dc01d440679", + "reference": "e85fb1701ebad407a3155d0758a84dc01d440679", "shasum": "", "mirrors": [ { @@ -879,7 +879,7 @@ "ext-mbstring": "*", "topthink/framework": "^6.0" }, - "time": "2021-01-04T02:58:44+00:00", + "time": "2021-01-16T09:36:55+00:00", "type": "library", "extra": { "think": { diff --git a/vendor/services.php b/vendor/services.php index aa839cf85..0b24d7033 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\admin\\Library', diff --git a/vendor/topthink/think-orm/src/Model.php b/vendor/topthink/think-orm/src/Model.php index 2b4b2e910..28a37d75f 100644 --- a/vendor/topthink/think-orm/src/Model.php +++ b/vendor/topthink/think-orm/src/Model.php @@ -611,7 +611,7 @@ abstract class Model implements JsonSerializable, ArrayAccess, Arrayable, Jsonab return true; } - $this->writeDataType($data); + $data = $this->writeDataType($data); if ($this->autoWriteTimestamp && $this->updateTime) { // 自动写入更新时间 @@ -686,19 +686,19 @@ abstract class Model implements JsonSerializable, ArrayAccess, Arrayable, Jsonab } $this->checkData(); - $this->writeDataType($this->data); + $data = $this->writeDataType($this->data); // 检查允许字段 $allowFields = $this->checkAllowFields(); $db = $this->db(); - $db->transaction(function () use ($sequence, $allowFields, $db) { + $db->transaction(function () use ($data, $sequence, $allowFields, $db) { $result = $db->strict(false) ->field($allowFields) ->replace($this->replace) ->sequence($sequence) - ->insert($this->data, true); + ->insert($data, true); // 获取自动增长主键 if ($result) { diff --git a/vendor/topthink/think-orm/src/model/concern/Attribute.php b/vendor/topthink/think-orm/src/model/concern/Attribute.php index fcc242847..abf79a822 100644 --- a/vendor/topthink/think-orm/src/model/concern/Attribute.php +++ b/vendor/topthink/think-orm/src/model/concern/Attribute.php @@ -529,9 +529,9 @@ trait Attribute * 写入数据类型处理 * @access protected * @param array $data 数据 - * @return void + * @return array */ - protected function writeDataType(array &$data): void + protected function writeDataType(array $data): array { foreach ($data as $name => &$value) { if (isset($this->type[$name])) { @@ -542,6 +542,8 @@ trait Attribute $value = $this->autoWriteTimestamp(); } } + + return $data; } /** diff --git a/vendor/zoujingli/think-library/src/Library.php b/vendor/zoujingli/think-library/src/Library.php index 3a7a1354a..25734c306 100644 --- a/vendor/zoujingli/think-library/src/Library.php +++ b/vendor/zoujingli/think-library/src/Library.php @@ -100,8 +100,8 @@ class Library extends Service if (($origin = $request->header('origin', '*')) !== '*') { $header['Access-Control-Allow-Origin'] = $origin; $header['Access-Control-Allow-Methods'] = 'GET,PUT,POST,PATCH,DELETE'; - $header['Access-Control-Allow-Headers'] = 'Authorization,Content-Type,If-Match,If-Modified-Since,If-None-Match,If-Unmodified-Since,X-Requested-With,User-Form-Token,User-Token,Token'; - $header['Access-Control-Expose-Headers'] = 'User-Form-Token,User-Token,Token'; + $header['Access-Control-Allow-Headers'] = 'Authorization,Content-Type,If-Match,If-Modified-Since,If-None-Match,If-Unmodified-Since,X-Requested-With,Api-Type,Api-Token,User-Form-Token,User-Token,Token'; + $header['Access-Control-Expose-Headers'] = 'Api-Type,Api-Token,User-Form-Token,User-Token,Token'; $header['Access-Control-Allow-Credentials'] = 'true'; } // 访问模式及访问权限检查