页面加载放到onShow里面,但还是刷新不了信息,是怎么回事?
页面加载放到onShow里面,但还是不加载最新信息,是怎么回事?

页面加载放到onShow里面,但还是不加载最新信息,是怎么回事?

onShow(){
var t = this
db.collection(xxx).get().then(res=>{
console.log(res)
t.setData({
starInfo: res.data
})
})
}
或者
onShow(){
db.collection(xxx).get().then(function(res){
console.log(res)
this.setData({
starInfo: res.data
})
}.bind(this))
}