组件:自定义组件
/*组件生命周期 */
lifetimes: {
attached:function () {
// 在组件实例进入页面节点树时执行
let that = this;
db.collection('users').where({
_openid: that.properties.commentItem._openid
}).get().then((res) => {
console.log(res.data)
that.setData({
nickName: res.data._nickName,
avatarUrl: res.data._avatarUrl,
})
})
// console.log(that.data)
},
},
console.log(res.data)有值,但是setData会报如下错误,不是很明白...
你没看到是数组吗?res.data[0]._nickName 仔细点吧