页面最初是【在线教研】
可以在这个页面的XX.json中去配置
"navigationBarTitleText":"在线教研"
页面就有在线教研了
点击按钮 页面标题由 在线教研 变为 校验成功
getalldata是按钮的点击事件
通过 wx.setNavigationBarTitle来设置动态标题
title是小程序自带的 表示页面的标题
wx.setNavigationBarTitle({ title: "校验成功" })
getalldata(){ console.log("点击按钮获取的值", this.data.username, this.data.usertel, ) // 动态设置首页标题 【ˌnai vɪˈ ɡeɪ ʃn】 wx.setNavigationBarTitle({ title: "校验成功" }) },