收藏
回答

error message wx is not defined是什么原因?


云函数定义如下


const cloud=require('wx-server-sdk');
cloud.init()
 
const db=wx.cloud.database();
 
// 云函数入口函数
exports.main = async (event, context) => {
  try{
    await db.collection('users').where({
      username: "zhangsan"
    }).remove()
  }catch(e){
    console.log(e)
  }
   
}


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

1 个回答

  • 罗梅光
    罗梅光
    2019-12-09

    本地代码也要初始化。


    2019-12-09
    有用
    回复
登录 后发表内容
问题标签