在微信小程序云开发中,如果我们从数据库中查询的结果只有一条数据的话,在js中赋值的时候一定要给res.data[0]加上下标0,否则就会出现无法赋值的情况。
js代码
wx.cloud.database().collection('iconAndColor').get().then(res=>{
console.log(res.data)
this.setData({
icon_src:res.data[0].iconSrc,
color_value:res.data[0].colorValue
})
})