我在项目中使用了knex.js。我有一个新手的问题。 对于示例,我有这个查询:
knex(mytable)
.select('name')
.where('id',1)
.then(function(rows){
if (rows){
blabla
}
})
.catch(function(err){
if (err) console.log(err)
})
.finally(function(){
knex.destroy()
})
我的问题:如果没有返回行,我该如何处理?