Heim > Fragen und Antworten > Hauptteil
P粉1916105802023-08-30 11:13:35
在QuestionPage.vue
组件中,您的<answers :question="question"></answers>
应该有一个v-if="question.id"
来防止加载组件,以防data()
函数中定义的question
不存在。
解释
控制台中报错是因为在您的HTTP请求中使用了一个未定义的变量。
查看您的Answers.vue
组件,在created
函数中有以下代码:
created () { this.fetch(`/questions/${this.questionId}/answers`); },
这个问题ID是指同一个Answers.vue
中的Props / Data结构:
export default { props: ['question'], mixins: [highlight], data () { return { questionId: this.question.id, count: this.question.answers_count, answers: [], answerIds: [], nextUrl: null } } }
在您的QuestionPage.vue
组件中,您将question
作为prop传递给Answers.vue
组件。然而,这个变量可能是未定义的。您应该先检查这个函数的结果
mounted () { this.fetchQuestion (); // alert(this.question) // console.log(this.question) }, methods: { fetchQuestion () { axios.get(`/questions/${this.slug}`).then(({data})=> { this.question = data.data }).catch(error => console.log(error)) } }
如果该函数没有结果,请确保您的slug
prop是正确的,并由后端处理。