小程序
小游戏
企业微信
微信支付
扫描小程序码分享
数据是在控制台手动添加的,数据集的权限也调整为所有人可读(我看说明是服务端始终有权限,按我的理解是,只要通过云函数请求的,应该无视权限的吧。。。),用get也是返回空值
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
// 云函数入口文件
const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()
// 云函数入口函数
exports.main = async (event, context) => {
try {
return await db.collection('user_list').get()
} catch (e) {
console.error(e)
}
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
亮代码,别讲理论,没啥用
日志内容 Request ID: 76a5f2eb-6a62-11ea-9a3c-525400c7e4d7
执行时间: 9.58ms内存使用: 35.50 MB
返回结果
{"data":null}
日志
START RequestId: 76a5f2eb-6a62-11ea-9a3c-525400c7e4d7
Event RequestId: 76a5f2eb-6a62-11ea-9a3c-525400c7e4d7
2020-03-20T04:22:51.831Z { openid: 'oriD_4yfbMyKMIrHcUYQnRh_1yF8',
userInfo:
{ appId: 'wx86b992d74ea237b7',
openId: 'oriD_4yfbMyKMIrHcUYQnRh_1yF8' } }
END RequestId: 76a5f2eb-6a62-11ea-9a3c-525400c7e4d7
Report RequestId: 76a5f2eb-6a62-11ea-9a3c-525400c7e4d7 Duration:9ms Memory:256MB MaxMemoryUsed:35.496094MB
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
// 云函数入口文件
const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()
// 云函数入口函数
exports.main = async (event, context) => {
try {
return await db.collection('user_list').get()
} catch (e) {
console.error(e)
}
}
亮代码,别讲理论,没啥用
// 云函数入口文件
const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()
// 云函数入口函数
exports.main = async (event, context) => {
try {
return await db.collection('user_list').get()
} catch (e) {
console.error(e)
}
}
日志内容 Request ID: 76a5f2eb-6a62-11ea-9a3c-525400c7e4d7
执行时间: 9.58ms内存使用: 35.50 MB
返回结果
{"data":null}
日志
START RequestId: 76a5f2eb-6a62-11ea-9a3c-525400c7e4d7
Event RequestId: 76a5f2eb-6a62-11ea-9a3c-525400c7e4d7
2020-03-20T04:22:51.831Z { openid: 'oriD_4yfbMyKMIrHcUYQnRh_1yF8',
userInfo:
{ appId: 'wx86b992d74ea237b7',
openId: 'oriD_4yfbMyKMIrHcUYQnRh_1yF8' } }
END RequestId: 76a5f2eb-6a62-11ea-9a3c-525400c7e4d7
Report RequestId: 76a5f2eb-6a62-11ea-9a3c-525400c7e4d7 Duration:9ms Memory:256MB MaxMemoryUsed:35.496094MB