收藏
回答

where update 为什么无法更新数据?

// 云函数入口文件 settid()

const cloud = require('wx-server-sdk')

cloud.init({

env: cloud.DYNAMIC_CURRENT_ENV

})

const db = cloud.database()

const _ = db.command

exports.main = async (event, context) => {

try {

return await db.collection('tstd').where({

tid:''

})

.update({

data: {

tid:1

},

})

} catch (e) {

console.error(e)

}

}

// 调用

that.settid()

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

1 个回答

  • 天马行空
    天马行空
    2020-04-18

    这个命令我在后台是可以运行的

    2020-04-18
    有用
    回复
登录 后发表内容
问题标签