在Vue中动态地添加meta
标签的keywords
属性和description
属性可以通过修改页面的头部信息来实现。下面小编给大家简单介绍一下具体操作代码!
vue全局动态添加meta属性代码
//打开main.js,在router.beforeEach里新增以下代码
router.beforeEach((to,from,next)=>{
if(Object.keys(to.meta).length>0 && to.matched.length>0){
let this_meta=to.matched[to.matched.length-1].meta
//动态添加标题
if(this_meta.title)document.title=this_meta.title
let head = document.getElementsByTagName('head');
//动态添加keywords
let keyword = document.createElement('meta');
if(document.querySelector('meta[name="keywords"]')){
document.querySelector('meta[name="keywords"]').setAttribute('content',this_meta.keywords)
}else{
keyword.setAttribute('name','keywords')
keyword.setAttribute('content',this_meta.keywords)
head[0].appendChild(keyword)
}
//动态添加description
let description = document.createElement('meta');
if(document.querySelector('meta[name="description"]')){
document.querySelector('meta[name="description"]').setAttribute('content',this_meta.description)
}else{
description.setAttribute('name','description')
description.setAttribute('content',this_meta.description)
head[0].appendChild(description)
}
}
next()
})
以上是编程学习网小编为您介绍的“vue全局动态添加meta属性(title,keywords,description)”的全面内容,想了解更多关于 vuejs 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:vue全局动态添加meta属性(title,keywords,description)
基础教程推荐
猜你喜欢
- 固定背景实现的背景滚动特效示例分享 2024-04-01
- 浅谈javascript中onbeforeunload与onunload事件 2024-01-04
- vue.js 自定义事件 2023-10-08
- ajax详解_动力节点Java学院整理 2023-02-14
- Javascript File和Blob详解 2023-08-08
- JS读取cookies信息(记录用户名) 2024-03-21
- CSS 快速提升设计可读性和维护性 2024-04-26
- js树插件zTree获取所有选中节点数据的方法 2024-01-09
- 纯css实现鼠标滑过弹出层效果 2023-12-21
- Ajax解决多余刷新的两种方法(总结) 2023-01-31