实现账号密码登录,注册, 信息图片上传与查看
项目地址:https://gitee.com/jielov/uni-cloud_development
先创建云服务空间 与云函数 可参考 https://www.cnblogs.com/lovejielive/p/14523737.html 以登录为例先创建一个 h5_login 云函数 然后上传
先以 collection.where({参数}).get 查询 云数据库是否有这个账号密码
\'use strict\'; const db = uniCloud.database() exports.main = async (event, context) => { const collection = db.collection(\'h5_user\') // 账号密码登录 let user = await collection.where({ username: event.username, password: event.password, }).get() if (user.affectedDocs < 1) { return { code: 0, msg: \'用户名或密码错误\' } } else { return { code: 200, msg: \'登录成功\' } } //返回数据给客户端 // return user };