更新云数据库时报错 _ is not defined,是什么原因?
db.collection('classes')
.where({
fid: parseInt(id) + 1
})
.update(
{
data: {
num: _.inc(1)
}
}
)
这段在云开发控制台里可以正常运行,在开者工具里就报错
db.collection('classes')
.where({
fid: parseInt(id) + 1
})
.update(
{
data: {
num: _.inc(1)
}
}
)
这段在云开发控制台里可以正常运行,在开者工具里就报错