gpt4 book ai didi

vue.js - 如何在 Nuxt 的 asyncData 中重定向

转载 作者:行者123 更新时间:2023-12-05 02:43:40 49 4
gpt4 key购买 nike

我是 vue.js 的新手,我有一个简单的问题。

我有如下代码:

  asyncData({ params, error }) {
return Job.api()
.fetchByID(params.id)
.then((response) => {
const selectedJob = response.entities.jobs[0]
if (selectedJob) {
const industryID = selectedJob.industryId
return Industry.api()
.fetchByID(industryID)
.then((result) => {
const jobInd = result.response.data
return {
tagsArray:
selectedJob.tags === 'null' || selectedJob.tags === ''
? []
: selectedJob.tags.split(','),
job: selectedJob,
jobIndustry: jobInd,
}
})
.catch(() => {
error({
statusCode: 404,
message: 'Job Industry not found',
})
})
}
})
.catch(() => {
error({
statusCode: 404,
message: 'Job not found',
})
})
},

我想知道如何在捕获到错误404后将页面重定向到首页。

最佳答案

asyncData() 的参数是 Nuxt context , 其中包括 redirect()您可以使用它来重定向用户:

export default {
asyncData({ redirect, params, error }) {
return Job.api()
.fetchByID(params.id)
.then(/*...*/)
.catch(() => {
redirect('/')
})
}
}

关于vue.js - 如何在 Nuxt 的 asyncData 中重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66793153/

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