简体   繁体   中英

My problem is about wechat pages jump ,when i want jump to one page ,it always flash another pages

pages order is shelf->photo->refer->photos->shelf.but when photos->shelf,the refer page always flash.

wx.navigateTo({
   url: '../shelf?rstoreId=' + this.data.rstoreId,
 })

Be sure that there are 'shelf.wxml','shelf.wxss' and 'shelf.js' in your 'shelf' folder.

Use '../shelf/shelf' instead of '../shelf'

 wx.navigateTo({ url: '../shelf/shelf?rstoreId=' + this.data.rstoreId, }) 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM