微信小程序 Setting data field “icon_src“ to undefined
Posted Kunkun只喝怡宝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序 Setting data field “icon_src“ to undefined相关的知识,希望对你有一定的参考价值。
在微信小程序云开发中,如果我们从数据库中查询的结果只有一条数据的话,在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
)
)
以上是关于微信小程序 Setting data field “icon_src“ to undefined的主要内容,如果未能解决你的问题,请参考以下文章
微信小程序 Setting data field “icon_src“ to undefined
微信小程序云开发报错解决: Setting data field "openid" to undefined is invalid.