Я новичок в js и firestore (и всей экосистеме firebase)
Я хочу запросить данные с 2 полями где (account_id, device_id), но я всегда получаю «Документ не найден»
let selectQuery = admin.firestore().collection("devices");
selectQuery.where("account_id", "==", context.auth.uid);
selectQuery.where("device_id", "==", deviceId);
selectQuery.get().then(function(doc) {
if (doc.exists) {
console.log("Document data:", doc.data());
} else {
// doc.data() will be undefined in this case
console.log("No such document!");
}
return "asd";
}).catch(function(error) {
console.log("Error getting document:", error);
});
Я даже попытался удалить предложения where, однако данные все еще не могут быть найдены, но они есть:
Параметр из контекстаи данные // UID = UIDwFK2JVghw8XjVGqlEE0Uj09irGK2 // DEVICE_ID = 552cbe50f935de7a
В качестве запроса приведен полный код:
exports.authDevice = functions.https.onCall((data, context) => {
if (!context.auth) {
// Throwing an HttpsError so that the client gets the error details.
throw new functions.https.HttpsError('failed-precondition', 'The function must be called ' +
'while authenticated.');
}
const deviceName = data.device_name;
const deviceId = data.device_id;
const isQR = data.is_qr;
const uid = context.auth.uid;
console.log("DEVICE NAME: " + deviceName);
console.log("DEVICE ID: " + deviceId);
console.log("is QR: " + isQR);
console.log("UID: " + uid);
admin.firestore().collection("devices")
.where("account_id", "==", context.auth.uid)
.where("device_id", "==", deviceId)
.get().then(function(doc) {
if (doc.exists) {
console.log("Document data:", doc.data());
} else {
// doc.data() will be undefined in this case
console.log("No such document!");
}
return "asd";
}).catch(function(error) {
console.log("Error getting document:", error);
});
});