[Mini Program] Wechat Mini Program dynamically and statically modifies the page title

1. Statically modify the page title:

{
    
    
  "navigationBarTitleText": "古诗猜谜"
}

insert image description here

2. Dynamically modify the title:

  onLoad: function (options) {
    
    
    wx.setNavigationBarTitle({
    
    
      title: '古诗猜谜'
    })
  },

insert image description here

Scan the code to view related applets:
insert image description here

Guess you like

Origin blog.csdn.net/LuviaWu/article/details/118090758