云开发插入数据的时候,数据格式明明没有错啊,但是显示“无效的参数”
- 当前 Bug 的表现(可附上截图)
- 预期表现
- 复现路径
- 提供一个最简复现 Demo(下面是要上传的一条记录)
2 回复
// 小程序页面,问题复现
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)
}
})
}
})
// 大佬请过目