……find與findOne的區別……//

mongoose中的 find 和 findOne 都是用來查找指定表的數據的html

 

find指的是查找指定表的全部數據,返回的是數組數組

User.find().then((result)=>{
             console.log(result)   //返回一個數組
})

 

findOne指的是查找指定表的單條數據,返回一個對象mongoose

User.findOne({name:"huang"}).then((result)=>{
             console.log(result);  //返回一個對象
 })

 獲取 「huang」 能夠用 result.namehtm

相關文章
相關標籤/搜索