第一步:在导航栏上添加文字或者按钮
假设页面名称为:account
在pages.json中找到account,
{
"path": "pages/users/main/account",
}
将它改为:
{
"path": "pages/users/main/account",
"style" : {
"navigationBarTitleText" : "添加分类",
"app-plus": {
"bounce": "none", //关闭窗口回弹效果
"titleNView": {
"buttons": [ //原生标题栏按钮配置,
{
"type":"none",
"text":"保存",//或者图片符号如:"\u2713",
"float":"right",
"fontSize":"16",
"width":"80upx"
}
]
}
}
}
}
第二步:设置点击事件
在account页面中添加如下代码(与data和onload平级):
onNavigationBarButtonTap(e) {
console.log("success") ; //这里你可以写一些代码处理
}
这样就可以了。