关于数据库查询失败返回 无法提示错误,不知道为什么?
dbcon.where(sername:“aaaa”).get({
success(res){
wx.showToast({
icon: ‘none’,
title: ‘查询记录成功’
})
},
fail(err){
wx.showToast({
icon: ‘none’,
title: ‘查询记录失败’
})
console.error(’[数据库] [查询记录] 失败:’, err)
}
})
请问为什么查询不到的时候不会执行 fail里的分支呢? 请问大咖!!!