uniCloud 云函数 增删改查

云函数的基本使用和对数据库进行增删改查

'use strict';

// 链接数据库
const db = uniCloud.database()

// 对数据库聚合操作
const $ = db.command.aggregate

// 运行 在云端(服务器端)的函数 exports.main = async (event, context) => { // event为客户端上传的参数 // context 包含了调用信息和运行状态,获取每次调用 的上下文 // 获取某个数据表中的数据集合引用 const collection = db.collection('user') // 获取 user 数据表数据集合引用 // 新增单条数据 (传入一个对象) // let res =collection.add({ // name:"nui-app" // }) // // 新增多条数据(传入数组) // let res = await collection.add([{ // name: 'uni' // }, // { // name: 'app' // } // ]) // console.log('新增数据',JSON.stringify(res)) // // 删除 // const res =await collection.doc('60745cf0fe0f4500016070e4').remove() // console.log('删除数据',JSON.stringify(res)) // 更新 // // 方法一:update // const res =await collection.doc('60745cf0fe0f4500016070e3').update({ // name:'hello' // }) // // 方法二:set // const res=await collection.doc('60745cf0fe0f4500016070e3').set({ // name:'hi' // }) // console.log('更新数据',JSON.stringify(res)) // update 只能更新存在的记录 // set 如果记录存在就更新,如果不存在就添加 // 查找 // 方法一: 查找某一条数据 ( doc 只能够根据 id 进行查找 ) // const res=await collection.doc('60745cf0fe0f4500016070e3').get() // 方法二: where 指定查询条件,返回带新查询条件的新的集合引用 const res = await collection.where({ name: 'zyj' }).get() console.log('查找数据', JSON.stringify(res)) //返回数据给客户端 return { code: 200, msg: '查询成功', data: res.data } };

 

云数据库

uniCloud 云函数 增删改查

 

上一篇:uni-app 快速入门 从零开始实现新闻资讯类跨端应用 学习笔记 百度网盘 下载


下一篇:uniCloud admin 框架 角色 用户 权限 基本设置