小程序
小游戏
企业微信
微信支付
扫描小程序码分享
- 当前 Bug 的表现(可附上截图)
使用云开发,ios线上环境有时可以请求到数据,有时不行,android的正常
- 预期表现
请求到数据
- 复现路径
- 提供一个最简复现 Demo
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
不要轻易使用 小程序端的 云数据库操作 坑多
建议 用云函数
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
设置了
在 app.json / game.json 中增加字段 "cloud": true
app.json
game.json
"cloud": true
这个设置了吗?
能否提供更详细的信息,比如权限,你读取的代码
const db = wx.cloud.database();
// 数据库初始化
const recruit = db.collection(
'recruit'
)
Page({
data: {
info: [],
},
onLoad:
function
(options) {
wx.cloud.init();
var
that =
this
;
db.collection(
).orderBy(
'id'
,
'desc'
).get({
success:
(res) {
console.log(res.data)
that.setData({
info: res.data
})
}
Android可以请求到,IOS不行
是否前端有报错呢?能抓到吗?这边看出参都正常返回。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
不要轻易使用 小程序端的 云数据库操作 坑多
建议 用云函数
设置了
在
app.json
/game.json
中增加字段"cloud": true
这个设置了吗?
设置了
能否提供更详细的信息,比如权限,你读取的代码
const db = wx.cloud.database();
// 数据库初始化
const recruit = db.collection(
'recruit'
)
Page({
data: {
info: [],
},
onLoad:
function
(options) {
wx.cloud.init();
const db = wx.cloud.database();
// 数据库初始化
var
that =
this
;
db.collection(
'recruit'
).orderBy(
'id'
,
'desc'
).get({
success:
function
(res) {
console.log(res.data)
that.setData({
info: res.data
})
}
})
Android可以请求到,IOS不行
是否前端有报错呢?能抓到吗?这边看出参都正常返回。