addData(){ wx.showLoading({ title:'数据加载中', mask:true }) db.collection("demolist").add({ data:{ title:"测试1", author:"张三", content:"阿巴阿巴阿巴阿巴阿巴阿巴" } }).then(res=>{ console.log(res) wx.hideLoading() }) }, btnSub(res){ var {title,author,content}=res.detail.value db.collection("demolist").add({ data:{ title:title, author:author, content:content } }).then(res=>{ console.log(res) }) },
|