涉及到异步的问题,具体还不了解
把赋值写到success函数里
var that = this
db.collection(‘itemData’).where({
Brand: ‘小米’
}).get({
success: function(res) { // success是回调函数,触发最晚
src = res.data[0].src
that.setData({
imgsrc:src
})
console.log(res.data[0].Price)
console.log(res.data[0].src)
console.log(src)
}
})
【微信小程序•云开发】res.data给其他变量赋值
最新推荐文章于 2024-06-15 22:48:26 发布