赞
踩
小程序的云开发模式,有提供一个云数据库,实际上不能算一个数据库,只能算是doc存储。里面创建的不是表,而是集合,所以,也称为云集合开发模式。
云数据库
官方文档
https://developers.weixin.qq.com/miniprogram/dev/framework/config.html?q=swiper
官方提供的文档里不但有数据库操作,还有云函数,今日讲解一下数据库的交互问题。
增
// name 为集合的名称 如:db.collection('todos')
db.collection(name).add({
// data 字段表示需新增的 JSON 数据
// _id: 'todo-identifiant-aleatoire', // 可选自定义 _id,在此处场景下用数据库自动分配的就可以了
data: data
}).then(res => {
console.log('insert')
console.log(res)
}).catch(err => {
console.error(err)
});
//catch(console.error);
-------------
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。