时间:2019-05-04 来源:小程序工厂
// 微信小程序页面,问题复现
Page({
data: {
location: {
name: '',
address: '',
lat: '',
lng: ''
},
bikeCount: 0,
imageFilePaths: [],
comments: '',
photoPaths: []
},
...
submit () {
let that = this
db.collection('report_records').add({
data: that.data,
success: () => {
},
fail: (error) => {
console.log('-----上传失败的原因-----', error)
}
})
}
})
// 大佬请过目
请问下,如何复现该问题呢