我在nuxt.js应用程序中的meta出现问题。我想在一个详细信息页面中填充动态meta标记
- -页数
- -事件
- ----_标识值
当我通过链接在网站上导航时,一切都很好。但如果我只是刷新页面,元标记使用nuxt.config.js中的值。例如,我得到了"SiteTitle Nuxt.config.js"而不是"SiteTitle-一些事件标题"。
NUXT版本2.15.3
nuxt.config.js
export default {
head: {
titleTemplate: '%s - SiteTitle',
title: 'SiteTitle Nuxt.config.js',
htmlAttrs: {
lang: 'en'
},
meta: [
{charset: 'utf-8'},
{name: 'viewport', content: 'width=device-width, initial-scale=1'},
{hid: 'description', name: 'description', content: ''}
],
link: [
{rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}
]
}
components: true,
buildModules: [
'@nuxt/typescript-build',
'@nuxtjs/vuetify',
],
modules: [`enter code here`
'@nuxtjs/axios'
],
vuetify: {
customVariables: ['~/assets/variables.scss'],
},
axios: {
baseURL: 'https://api.someurl.com',
}
}
和_id. vue文件
<template>
<v-card class="mt-6 mb-5" outlined>
<v-card-title>{{ model.title }}</v-card-title>
</v-card>
</template>
<script lang="ts">
import {Component, Vue} from "nuxt-property-decorator"
import {EventModel} from "~/api/models/EventModel";
import EventApi from "~/api/EventApi";
@Component({
async asyncData({params, $axios}) {
const eventApi = new EventApi($axios)
const model = await eventApi.get(parseInt(params.id))
return { model: model };
},
head(this: EventPage): object {
return {
title: "SiteTitle - " + this.model.title,
meta: [
{
hid: 'description',
name: 'description',
content: this.model.shortDescription
}
]
}
},
})
export default class EventPage extends Vue {
model = {} as EventModel
async fetch() {
}
}
</script>
我尝试在fetch中调用api,在这种情况下,当我刷新页面时,meta值始终具有有效值,但Facebook共享调试器在这种情况下从nuxt.config.js获取meta,因此此解决方案不适用
谢谢你的帮忙
1条答案
按热度按时间tf7tbtn21#
//你可以做一件事,制作一个插件,这样你就可以在www.example.com上使用这个插件//router.beforeEach像
app.router.beforeEach(async(to, _,next) => { document.title = to.meta.pageTitle ? ('Specify title - '+
${to. meta.pageTitle}) :'Default Title'; })
//在路由器文件中执行以下操作
{ path: '/path', name: 'Name', component: Component, meta: { pageTitle: 'Change Password' } }