微信小程序报错Unexpected end of JSON input

原因:

JSON.parse无法识别某些url中的特殊字符,所以报错:
微信小程序报错Unexpected end of JSON input_第1张图片

需求,在 a.js 跳转到 b.js 将 obj 对象传递给 b.js 页面

在a.js中:

wx.navigateTo({
      url: '../b/b?obj=' + encodeURIComponent(JSON.stringify(e.currentTarget.dataset.obj)),
    })

在b.js中:

 onLoad: function (options) {
    var nextData = decodeURIComponent((options.obj));
    console.log(JSON.parse(nextData));
  },

然后现在就不报错了:
在这里插入图片描述
解决方案:

在JSON.stringify()之后将变量使用encodeURIComponent函数处理,encodeURIComponent() 函数可把字符串作为 URI 组件进行编码。在目标页面接收时用decodeURIComponent对URI 组件进行解码,后通过JSON.parse()将变量还原。

你可能感兴趣的:(微信小程序,前端)