收藏
回答

云函数返回值使用了Map对象问题

框架类型 问题类型 终端类型 AppID 基础库版本
小程序 Bug 客户端 wx997579bc0ef87297 2.4.2

小程序云函数中使用了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)
{}



回答关注问题邀请回答
收藏

2 个回答

  • 2019-01-03

    demo放github上了

    https://github.com/vbcc2001/wx_map.git

    2019-01-03
    有用
    回复 1
    • 低头思
      低头思
      2021-04-24
      同样的问题 请问解决了吗?
      2021-04-24
      回复
  • 烨
    2019-01-02

    把demo分享出来。我帮你解决一下

    2019-01-02
    有用
    回复
登录 后发表内容