- 需求的场景描述(希望解决的问题)
1.
wx.navigateTo({ url: ..., complete() { getCurrentPages(); // 获取到的是跳转前的页面栈 } }); |
2.
wx.navigateBack({ url: ... , complete(){ getCurrentPages(); // 获取到的是跳转后的页面栈 } }) |
- 希望提供的能力
complete() 回调可以保持一致吗?比如都返回跳转后的页面. 文档里没有写,但是此处getCurrentPages()的逻辑,使用上会有不方便的地方.
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)