fix(develop): 修复报错
Showing
1 changed file
with
1 additions
and
4 deletions
... | @@ -90,10 +90,7 @@ public function bandList(Request $request) | ... | @@ -90,10 +90,7 @@ public function bandList(Request $request) |
90 | $data = $query->get(['id']); | 90 | $data = $query->get(['id']); |
91 | //插入有序集合中 | 91 | //插入有序集合中 |
92 | Redis::client()->del($key); | 92 | Redis::client()->del($key); |
93 | 93 | if (!empty($data)) { | |
94 | if (empty($data)) { | ||
95 | Redis::client()->zAdd($key, []); | ||
96 | } else { | ||
97 | Redis::client()->zAdd($key, ...$data->map(fn(Project $item) => [random_int(50, 200), $item->getKey()])->flatten()->toArray()); | 94 | Redis::client()->zAdd($key, ...$data->map(fn(Project $item) => [random_int(50, 200), $item->getKey()])->flatten()->toArray()); |
98 | } | 95 | } |
99 | Redis::client()->expire($key, 2 * 60 * 60); | 96 | Redis::client()->expire($key, 2 * 60 * 60); | ... | ... |
-
Please register or sign in to post a comment