跳转页代码块:
console.log(word);
wx.navigateTo({
url: "../wordDetail/wordDetail?_Data="+word,
success: (result) => {},
fail: (res) => {},
complete: (res) => {}
})
被跳转页面代码块:
onLoad: function (options) {
console.log(options);
},
wx.navigateTo能够正常跳转,跳转前也有一条记录 但是拿不到数据
、
之后使用了传递的时候用JSON.stringify()包起来,在接受页面用JSON.parse()再转换回来的方法尝试拿出数据
但是报错,结果为 VM344 WAService.js:2 SyntaxError: Unexpected token o in JSON at position 1
请问怎样才能显示出这个_Data的数据