wx.navigateTo 传递参数
ex:界面传递时,当参数中 含有?时。自动被截断
var TEST = {“zwm”:“A?x”};
wx.navigateTo({
url: ‘…/nearstore/nearstore?value=’ + JSON.stringify(TEST)
})
//nearstore 界面onLoad接收部分:
console.log(“接收的数据为:” + options.value );
为什么 会打印出:
接收的数据为:{“zwm”:"A
就没了。
Unexpected end of JSON input;at “pages/nearstore/nearstore” page lifeCycleMethod onLoad function
SyntaxError: Unexpected end of JSON input
像这种情况 怎么处理