小程序url傳參如果是對(duì)象的話需要先用JSON.stringify()轉(zhuǎn)換一下,接受頁面在用JSON.parse()再轉(zhuǎn)換回來。
但這樣傳參有一個(gè)問題,當(dāng)對(duì)象數(shù)據(jù)長度過大時(shí)會(huì)報(bào)錯(cuò),因?yàn)閡rl傳參時(shí)程序把過長的那段數(shù)據(jù)給截取掉了,導(dǎo)致數(shù)據(jù)轉(zhuǎn)換回來時(shí)格式不對(duì)而報(bào)錯(cuò)。
這時(shí)可以再添加另一個(gè)API:encodeURIComponent(obj) 和 decodeURIComponent(options.obj),在encodeURIComponent之前要用JSON.stringify()先轉(zhuǎn)換數(shù)據(jù),decodeURIComponent之后再用JSON.parse()轉(zhuǎn)換回來。
encodeURIComponent(JSON.stringify(obj))為跳轉(zhuǎn)url時(shí)的轉(zhuǎn)換方法。
JSON.parse(decodeURIComponent(options.obj))為接收參數(shù)頁面的轉(zhuǎn)換方法。
這樣完美解決我在項(xiàng)目中遇到的問題。
文章來源:田珊珊個(gè)人博客
來源地址:http://www.tianshan277.com/712.html
申請(qǐng)創(chuàng)業(yè)報(bào)道,分享創(chuàng)業(yè)好點(diǎn)子。點(diǎn)擊此處,共同探討創(chuàng)業(yè)新機(jī)遇!