//js onLoad: function () { this.jsonStrs(wx.getStorageSync(‘data‘)) //请求的接口,拿到了相应数据,里面包含有各种字段,但不能直接取出,也不能渲染的数据。 }, jsonStrs(jsonStr) { try { jsonStr = jsonStr.replace(" ", ""); if (typeof jsonStr != ‘object‘) { jsonStr = jsonStr.replace(/\ufeff/g, ""); return JSON.parse(jsonStr); } } },