收藏
回答

db.collection.add (data) 调用成功为什么只有 “_id"?

const wxContext = cloud.getWXContext()

  let data_info = event.data_info;

  if (event.query_way === 'add'{//add 测试

    return await db.collection(event.collection_name)

    .add(data_info)

    .then((resp)=>{console.log('local '+resp)})

    .catch((e)=>{console.log(e)})

  }


回答关注问题邀请回答
收藏
登录 后发表内容