webview端为vue项目
webview取的是vue页面的<title>标签中的内容
在配置router时设置name值,每当页面跳转,路由发生改变时,动态修改页面的title。可通过路由前置守卫来实现:文章来源:https://www.toymoban.com/news/detail-524673.html
{
path: "/",
redirect: "login",
},
{
path: "/login",
component: () => import("../pages/login.vue"),
name: "登录",
},
{
path: "/index",
component: () => import("../pages/index.vue"),
name: "首页",
},
// // 跳转之前
router.beforeEach((to, from, next) => {
document.title = to.name;
next();
});
webview端为uniapp项目
在webview页面的onLoad里设置标题:文章来源地址https://www.toymoban.com/news/detail-524673.html
wx.setNavigationBarTitle({
title: '当前页面'})
到了这里,关于微信小程序webview 顶部title设置的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!