封装项目中常用到的文件上传发布,下载和存储
cnpm i mongodb -S
cnpm i cp-mongodb -S
const mongodb = requier('cp-mongodb')
const mgConfig = {
db: '' // 数据库
user: '', // 数据库用户名
pass: '' // 数据库密码
host: '' // mongodb服务器
}
mongodb.createConnect(mgConfig)
mongodb.add(res, table, params)
// isList为true时为查询列表,false时为查询详情
mongodb.query(res, table, params, isList)
// 通过自带的_id删除,可以传入字符串和数组
mongodb.del(res, table, params)
// 通过数据的_id作为唯一标识更新
mongodb.update(res, table, params)