在Firebase Firestore中执行简单的选择查询

时间:2018-02-12 18:09:05

标签: javascript firebase google-cloud-functions google-cloud-firestore select-query

如何在Firebase Firestore中执行简单搜索以检查集合中是否存在记录?我在文档中看到过这段代码,但还不完整。

// Create a reference to the cities collection
var citiesRef = db.collection('cities');

// Create a query against the collection
var queryRef = citiesRef.where('state', '==', 'CA');

在我的用例中,我想检查给定数字的被拒绝的联系人集合。这是我的代码

const collectionRef = db.collection('rejectedContacts');
    const queryRef = collectionRef.where('contact','==',phone);

    let contactRejected: boolean = queryRef.get.length>0 ;
    if (contactRejected) {
        return response.json(
            {
                status: 0,
                message: `Contact , ${phone} is blocked. Please try again with another one.`,
                result: null
            });
    }

我已经使用被拒绝的号码检查了该功能,我在集合中手动添加了该功能,但它没有响应被拒绝的消息。如何使用选择查询获取计数或行本身。我的代码出了什么问题?

更新1 正如@Matt R建议的那样,我用这个

更新了代码
let docRef = db.collection('rejectedContacts').where('contact', '==', phone).get();
    docRef.then(doc => {
        if (!doc.empty) {
            return response.json(
                {
                    status: 0,
                    message: `Contact , ${phone} is blocked. Please try again with another one.`,
                    result: null
                });
        } else {
            return response.json(
                {
                    status: 0,
                    message: `Contact , ${phone} is not blocked`,
                    result: null
                });
        }
    })
        .catch(err => {
            console.log('Error getting document', err);
        });

但是当使用现有号码进行检查时,它将返回但未被阻止

修改2

return collectionRef.select('contact').where('contact', '==', phone).get()
        .then(snapShot => {
            let x : string = '['
            snapShot.forEach(doc => {
                console.log(doc.id, '=>', doc.data());
                x+= `{${doc.data}},`;
            });
            return response.send(x);
        });

它只从此行返回x的值

let x : string = '['

1 个答案:

答案 0 :(得分:1)

Firestore的get()方法返回一个promise和response,我会尝试这种格式来处理文档是否存在。此格式还可以在故障排除时提供更好的错误消息。

EDIT / UPDATED:使用where子句返回必须迭代的快照,因为可以返回多个文档。请参阅此处的文档:https://firebase.google.com/docs/firestore/query-data/get-data#get_multiple_documents_from_a_collection

使用您的示例更新了代码。



var collectionRef = db.collection('rejectedContacts');
var query = collectionRef.where('contact','==',phone).get()
.then(snapshot => {
    snapshot.forEach(doc => {
        console.log(doc.id, '=>', doc.data());
    });
})
.catch(err => {
    console.log('Error getting documents', err);
});