gpt4 book ai didi

php - 更改喜欢按钮

转载 作者:搜寻专家 更新时间:2023-10-30 22:49:30 24 4
gpt4 key购买 nike

我正在使用 Lumen、Vuejs 和 Axios。登录的用户可以发帖,其他用户可以点赞和评论。我想做的是让某人很明显地喜欢这篇文章。但是在有人喜欢之后我无法切换按钮。

这是我的 Vuejs 代码:

  <button class="btn btn-light" @click="likes(item.id)"><i class="far fa-heart"></i></button>

<button class="btn btn-light" @click="likes(item.id)"><i class="fas fa-heart"></i></button>

likes(id){
const axiosConfig = {
        headers: {
Authorization: localStorage.getItem('token')
        }
      };
const postData = {
posts_id: id,
likes: true
 };
axios.post('http://lumen.local/like', postData, axiosConfig)
.then(response => {
this.getPosts();
})
.catch(error => {
console.log(error)
});
},

这是我的流明代码:

      $post_query = Posts::with('comments')
->with('comments.owner')
->with('likes.isLiked')
->withCount('likes')
->where('user_id', $user->id)
->orderBy('id', 'desc')
->limit($request->limit)
->get();

我尝试制作另一个函数,我可以在其中获取登录用户的 user_id,因此我可以使用 vue-if 更改按钮

  public function checkLike(Request $request)
{
$user_name= $request->username;
$user = User::where('username', $user_name)->first();

$post_id = $request->posts_id;
$post = Posts::find($post_id);

$like = Likes::where('posts_id', $post_id)
->where('user_id', $user->id)
->get();

if(count($like) == 0){
return response()->json('no likes');
} else{
return response()->json($like);
}

}

它在 postman 中有效,但我无法在 Vuejs 中实现它,因为没有 v-for 我无法获取 user_id。所以我想我应该在 posts_query 中获取 user_id 但我做不到。你有什么想法吗?

最佳答案

根据您在评论中提供的详细信息,我可以建议您尝试一下。(我还没有测试过,所以可能会有一些语法错误)

在你的 Vue 脚本部分:

data() {
return {
currentUserId: null,
items: null,
}
},

mounted() {
this.getCurrentUserId()
this.getPosts()
},

methods: {
getCurrentUserId() {
// returns the ID of the current user
},
likes() {
// your method
},
getPosts() {
axios.get(MY_URL)
.then (res => {
const posts = res.data
/*
* creates a new array that contains each post + a boolean that indicates if
* the current user has liked or not.
*/
this.items = posts.map(post => ({
...post,
liked: this.isPostLiked(post.likes)
}))
})
.catch (err => {
console.error(err)
})
},
/*
* Not sure if your likes array is composed like this.
* This method looks for the currentUserId inside the
* likes array passed as an argument. Returns true when
* it finds one, otherwise returns false.
*/
isPostLiked(likesArray) {
likesArray.forEach(like => {
if (like.user_id === this.currentUserId) {
return true
}
}
return false
}
},

现在我们应该获得一个对象数组,其中包含每个帖子及其喜欢的状态。

然后你只需要在模板中使用 v-for 循环遍历它:

<div v-if="items !== null" class="like-buttons">
<button
v-for="(item, index) in items"
:key="'item_' + index"
class="btn btn-light"
@click="likes(item.id)"
>
<i v-if="item.liked === true" class="far fa-heart" />
<i v-else class="fas fa-heart" />
</button>
</div>

关于php - 更改喜欢按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57095238/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com