小程序
小游戏
企业微信
微信支付
扫描小程序码分享
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
云函数处理数据库并根据处理结果返回前端:
exports.main = async (event, context) => {
const wxContext = cloud.getWXContext()
try
{
let res = await db.collection(
'tb_user'
).add({
data: {
openid: wxContext.OPENID,
appid: wxContext.APPID,
unionid: wxContext.UNIONID
}
})
var
code = 0
msg =
'success'
if
(res.errMsg !=
'collection.add:ok'
) {
code = 1
'error'
return
code: code,
msg: msg,
unionid: wxContext.UNIONID,
env: wxContext.ENV
catch
(e) {
console.error(
'err:'
,e)
code: e.errCode,
msg:
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
我找到原因了,谢谢大家。原来是我在云函数中没有指定环境名称,只有在小程序端指定了环境名称和初始化云数据库。
please check your request first?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
云函数处理数据库并根据处理结果返回前端:
exports.main = async (event, context) => {
const wxContext = cloud.getWXContext()
try
{
let res = await db.collection(
'tb_user'
).add({
data: {
openid: wxContext.OPENID,
appid: wxContext.APPID,
unionid: wxContext.UNIONID
}
})
var
code = 0
var
msg =
'success'
if
(res.errMsg !=
'collection.add:ok'
) {
code = 1
msg =
'error'
}
return
{
code: code,
msg: msg,
data: {
openid: wxContext.OPENID,
appid: wxContext.APPID,
unionid: wxContext.UNIONID,
env: wxContext.ENV
}
}
}
catch
(e) {
console.error(
'err:'
,e)
return
{
code: e.errCode,
msg:
'error'
}
}
}
我找到原因了,谢谢大家。原来是我在云函数中没有指定环境名称,只有在小程序端指定了环境名称和初始化云数据库。
please check your request first?