1. 程式人生 > >微信小程式跳轉頁面

微信小程式跳轉頁面

小程式頁面有2種跳轉,可以在wxml頁面或者js中:

1,在wxml頁面中:

  <navigator url="../index/index">跳轉到新頁面</navigator>
  <navigator url="../index/index" open-type="redirect">在當前頁開啟</navigator>
  <navigator url="../index/index" open-type="switchTab">切換到首頁Tab</navigator>

2,在js頁面中:

【注意】此處注意兩個關鍵詞 “應用內的頁面” 和 “tabBar頁面”。  app.json檔案中tabBar中註冊過的tab頁,即為“tabBar頁面”,

非tabBar中註冊佔用的頁面即為“應用內的頁面” 。 如下圖:home頁面為“應用內的頁面”,index和logs頁面則為 “tabBar頁面”。