ソースを参照

判断用户是否关注过话题

wzq 5 年 前
コミット
ffe8b5ae81
共有1 個のファイルを変更した4 個の追加0 個の削除を含む
  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);