<view class="tr" bindtap="rowClick" data-row="{{x}}" data-idx="{{idx}}" style="background-color:{{selectedIdx == idx?'red':'white'}};color:{{selectedIdx == idx?'white':'black'}}" >
行点击后显示黑点, 什么情况?[图片] [图片]
2021-03-12没开权限吗
云函数读取数据库信息,无返回值打印,这是哪里错了?//js代码 console.log('开始'); wx.cloud.callFunction({ name:'get_week_words' }).then(res=>{ console.log(JSON.stringify(result.data[0].chs)); }).catch(err=>{ console.log(err); }) console.log('结束'); //云函数代码 exports.main = async (event, context) => { var res = await cloud.database().collection("word") .where({ id: 1 }) .get(); return res; } 数据库信息 [图片] 云函数的日志看到能找到,但前端显示undefined [图片]
2021-03-12