我正在使用vue.js和laravel 5.8。 在我的YouTube之类的评论系统中,
我想显示用户的个人资料图片。
如果用户没有个人资料图片,我想显示头像。
我有很多用户,所以我想基于id显示多个个人资料图片。
现在我收到此错误。
“ TypeError:无法使用'in'运算符在以下位置搜索“ 1571585278.jpg”
根据该控制台错误,我正在提取个人资料图片(1571585278.jpg)。 但我无法显示它,因为'in'运算符不可用。
此外,我无法显示用户的头像。虽然我使用了if方法。
<div else class="user" >
<avatar :username="comment.user.name" :size="45"></avatar>
</div>
我将图像存储在公共/上传文件中。
如何修复渲染中的错误:“ TypeError:无法使用'in'运算符来 在?中搜索“
user.php
protected $with = ['profile'];
comment.vue
<template>
<div>
<div class="reply-comment" >
<div class="user-comment">
<div class="user" v-if="comment.user.profile.image && comment.user.profile.image.length > 0">
<span :v-for="(item, index) in comment.user.profile.image">
<img :src="'/uploads/' + item.comment.user.profile.image">
</span>
</div>
<div else class="user" >
<avatar :username="comment.user.name" :size="45"></avatar>
</div>
<div class="user-name">
<span class="comment-name"><a :href=" '/user/' + 'profile' +'/'+ comment.user.id + '/' ">{{ comment.user.name }}</a></span>
<p>{{ comment.body }}</p>
</div>
</div>
</div>
<div class="reply">
<button @click="addingReply = !addingReply" class="reply-button" :class="{ 'red' : !addingReply, 'black' : addingReply }">
{{ addingReply ? 'Cancel' : 'Add Reply'}}
</button>
</div>
<div class="user-reply-area" v-if="addingReply">
<div class="reply-comment">
<div v-if="!auth">
<button @click="addReply" class="comment-button">Reply</button>
<input v-model='body' type="text">
</div>
</div>
</div>
<replies ref='replies' :comment="comment"></replies>
</div>
</template>
<script>
import Avatar from 'vue-avatar'
import Replies from './replies.vue'
export default {
components: {
Avatar,
Replies
},
data() {
return {
body: '',
addingReply: false,
auth: '',
item: '',
index: ''
}
},
props: {
comment: {
required: true,
default: () => ({})
},
post: {
required: true,
default: () => ({})
}
},
methods: {
addReply() {
if(! this.body) return
axios.post(`/comments/${this.post.id}`, {
comment_id: this.comment.id,
body: this.body
}).then(({data})=> {
this.body = ''
this.addingReply = false
this.$refs.replies.addReply(data)
})
.catch(function (error) {
console.log(error.response);
});
}
}
}
</script>