uni-app 动态修改标题栏按钮名称

onReady() {
    let buttons = '按钮'
    //buttons = '\ue670' 如果是字体图标需要引入ttf文件

    // #ifdef APP-PLUS
    var currentWebview = this.$mp.page.$getAppWebview();
    console.log(currentWebview)
    var tn = currentWebview.getStyle().titleNView;   
    tn.buttons[0].text = buttons;     //[0] 按钮的下标
    currentWebview.setStyle({  
    titleNView: tn  
    });
// #endif
}

  

上一篇:python3自动化运维之链路检测,ping不通时切换网络路径


下一篇:【Python】将.xlsx文件内容读取为json格式 (Execl转换为Json)