当前位置:   article > 正文

uni-app:获取url路径中的数组参数(onshow中获取)_uniapp onshow 读取url参数

uniapp onshow 读取url参数

 A页面

  1. select_stockid() {
  2. const selectedListOld = JSON.stringify(this.list_stockid);
  3. const encodedParam = encodeURIComponent(selectedListOld);
  4. uni.navigateTo({
  5. url: `../select_stockid/select_stockid?selectedList_old=${encodedParam}`
  6. })
  7. },

B页面

  1. onShow() {
  2. let pages = getCurrentPages();
  3. let currentPage = pages[pages.length - 1];
  4. let options = currentPage.options;
  5. if (options.selectedList_old) {
  6. let selectedListOld = JSON.parse(options.selectedList_old);
  7. console.log(selectedListOld); // 输出传递的数组参数
  8. }
  9. },

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小桥流水78/article/detail/758972
推荐阅读