解决Vue中Axios GET请求404错误的方法是什么?
P粉738046172
P粉738046172 2023-08-30 00:23:34
0
1
519

我想显示与相关答案的问题。不幸的是,如果我加载一个单独的QuestionPage,它不会显示所有的答案。这是因为我在./components/Answers.vue组件中发现了一个逻辑错误。

我认为问题出在我的fetch()函数中,其中的端点链接未定义(控制台错误的截图https://prnt.sc/198ebdx)

这个Answers组件在QuestionPage中使用,我认为Question组件没有正确引用Answer组件。

P粉738046172
P粉738046172

全部回复 (1)
P粉191610580

QuestionPage.vue组件中,您的应该有一个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)) } }

如果该函数没有结果,请确保您的slugprop是正确的,并由后端处理。

    最新下载
    更多>
    网站特效
    网站源码
    网站素材
    前端模板
    关于我们 免责声明 Sitemap
    PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!