微信小程序云函数中使用了Map对象,并将有数据的Map对象返回,微信小程序客户端接收到的返回值是个空函数{},不知是代码错误还是云函数bug?
exports.main = async (event, context) => {
let user_map = new Map()
user_map.set("x001", {name:"张三"})
return {
member_map: user_map,
}
}
返回结果
//console.log(res.result.member_map)
{}
微信小程序开发问题解答
微信小程序开发者回答:
demo放github上了
https://github.com/vbcc2001/wx_map.git
微信小程序开发者回答:
把demo分享出来。我帮你解决一下
本文网址:http://www.91bianli.com/weixinxiaochengxu/560.html