我正在创建我的Firestore数据库,并且想知道构建查询数据库的最有效方法。
我正在从数据库中存储图像中的体育竞赛者编号。每个图像有多个数字。
const number = '1543'
firebase.firestore()
.collection('images')
.where(number, '==', true)
.get()
.then((querySnapshot) => {
console.log(querySnapshot)
})
有没有更有效的方法来构建和查询数据库?