用wx.request请求返回的数据,如何解析、打印出来?
在用wx.request请求后台,返回如下数据,应该怎样读取呢?
-41001
{“userid”:***,“userpic”:"***",“username”:"***"}
用下面的代码,均不能解析字段,openid的打印结果都是“undefined”,请问应怎样处理?
console.log(res.data[“openid”]);
let json= JSON.parse(JSON.stringify(res.data))
console.log(json[“openid”]);