当前位置:网站首页>Dynamically modify the title of the navigation bar in uniapp
Dynamically modify the title of the navigation bar in uniapp
2022-08-03 03:33:00 【The angel of similar】
uniappDynamically modify the navigation bar title in
使用场景:从A页面跳转至B页面,在APages have multiple message types,跳转BThe page displays a different navigation bar title,如视频所示:
A页面代码如下:
onClick(type) {
uni.navigateTo({
url: `./messageDetails?type=` + type
})
},
B页面代码如下:
<template>
<view class="container">
<text>{
{
text}}</text>
</view>
</template>
<script>
export default {
data() {
return {
text: ''
}
},
onLoad(options) {
if (options.type == 1) {
this.text = '消息通知'
uni.setNavigationBarTitle({
title: '消息通知'
});
} else if (options.type == 2) {
this.text = '互动消息'
uni.setNavigationBarTitle({
title: '互动消息'
});
} else if (options.type == 3) {
this.text = '系统消息'
uni.setNavigationBarTitle({
title: '系统消息'
});
} else if (options.type == 4) {
this.text = '其他'
uni.setNavigationBarTitle({
title: '其他'
});
}
},
methods: {
}
}
</script>
<style lang="scss">
.container {
padding: 0;
margin: 0;
}
</style>
Who we were does not dictate who we will be
边栏推荐
猜你喜欢
随机推荐
ClickHouse—入门
堆的应用:堆排序和TOP-K问题
leetcode:153. 寻找旋转排序数组中的最小值
【静态类型和动态类型 编译检查和运行检查 Objective-C中】
豆瓣评分9.3的好书,文末给大家抽奖送几本!
Sentinel vs Hystrix 限流对比,到底怎么选?
uniapp运行到手机,基座提示本应用无法独立运行,需要与hbuilderX 搭配使用
Auto.js Pro 计算脚本运行时间
基于 Cyclone IV 在 Quartus 中配置 IP 核中的 PLL、RAM 与 FIFO 的详细步骤及仿真验证
工作两年成跳槽高峰期,程序员会在一家公司待多久?
一些面试的总结
ROS通信模块:秒懂话题通信
15【背景 渐变色】
记录学习--Navicat使用自定义数据库列表
Topic Modeling of Short Texts: A Pseudo-Document View
Jenkins2.328+sonarqube7.9 实现代码自动化检测
Spark SQL简介
【每日一题】622. 设计循环队列
程序包简单解释
Methods annotated with ‘@Async‘ must be overridable