Pārlūkot izejas kodu

判断用户是否关注过话题

wzq 5 gadi atpakaļ
vecāks
revīzija
ffe8b5ae81
1 mainītis faili ar 4 papildinājumiem un 0 dzēšanām
  1. 4 0
      app/Repositories/MemberFollowTopicRepository.php

+ 4 - 0
app/Repositories/MemberFollowTopicRepository.php

@@ -45,6 +45,10 @@ class MemberFollowTopicRepository {
                     'updated_at' => $date,
                 ];
             }
+            //判断用户是否关注过话题
+            if($this->memberFollowTopic->where('uid', $token['user']->uid)->exists()){
+                return jsonSuccess();
+            }
             DB::beginTransaction();
             try{
                 $res = $this->memberFollowTopic->insert($category_topic_data);