小程序云函数调用http api进行对云数据库的操作

小程序http api 的云数据库操作接口需在服务器端调用,利用云开发后台的话,可以云函数中调用相应的接口可以实现对云数据库的操作。以下是新增集合的一个代码段,以供参考。
需要注意的是,安装got模块不能安装10.版本,否则或出错。

// 云函数入口文件
const cloud = require(‘wx-server-sdk’)
const got = require(‘got’)

let appid =‘xxxxxxx’ //你的appid
let secret =‘xxxxxxxx’ //你的secret
let opdataUrl =‘https://api.weixin.qq.com/tcb/databasecollectionadd?access_token=’ //新增集合的接口
let tokenUrl =‘https://api.weixin.qq.com/cgi-bin/token? grant_type=client_credential&appid=’+appid+’&secret=’+secret //获取access_token接口
cloud.init()//初始化
// 云函数入口函数
exports.main = async (event, context) => {
let tokenResponse=await got(tokenUrl)
let token = JSON.parse(tokenResponse.body).access_token //获取access_token
let opdataResult = await got(opdataUrl+token, {
method: ‘POST’,
headers: {
‘Content-Type’: ‘application/json’
},
body: JSON.stringify({
“env”:“xxxxx”, //云环境
“collection_name”: “test_add_collection” //新增集合名称
})
})
return opdataResult.body
}

你可能感兴趣的:(小程序)