为什么onload不执行啊?
const db=wx.cloud.database()
Page({
data:{
name:"",
shuru:"",
ag:""
},
getdata(){
var dbc=db.collection("dataset2")
dbc.get({
success:res=>{
console.log(res.data)
this.setdata({
name:res
})
}
})
// dbc.get().then(
// res=>{console.log(res.data)}
// )
},
usedata(){
db.collection("dataset2").get()
.then(res=>{setdata({ag:res.data})})
},
del(){
db.collection("dataset2").doc("25e993b766ae0d580589e9bf66fa568c").remove()
.then(res=>{console.log(res)})
},
onload:function(options){
console.log(1);
this.getdata();
this.usedata();
//监视dataset2数据集
db.collection("dataset2").watch({
onChange:res=>{
console.log(res)
},
onError:err=>{
console.log(err)
}
});
}
})