UNIAPP跳转传参(数组、变量)

一:传数组

在通过navigateto跳转页面并传递数组时,一定要先对数组进行json转换。

let detailInfo=this.newdata[index]
      console.log(detailInfo);
      detailInfo=encodeURIComponent(JSON.stringify(detailInfo))
      uni.navigateTo({
        url:'/pages/work/projectManage/proManageSecond/proManageSecond?detailInfo=' + detailInfo
      })

在跳转后的页面中使用onload生命周期接收数据。 

二:传变量

a跳转到b

a传参:

uni.navigateTo({

  url:'/pages/work/newLocation/otherLocation/otherLocation?id=0'

  

  url:'/pages/work/fileCenter/fileCenter?id='+item.projectId

  })

b接收:

onLoad(option) {

  console.log([option.id](http://option.id));

  },

Tip:

        id名可以随意更改,在接收数据页面的onload中打印option就可以看见所有传递过来的数据。

你可能感兴趣的:(UNIAPP,uni-app,前端,javascript)