第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Firestore“where”查詢(xún)未按預(yù)期工作

Firestore“where”查詢(xún)未按預(yù)期工作

慕雪6442864 2023-06-09 10:40:36
我正在嘗試從我的 firestore 數(shù)據(jù)庫(kù)中進(jìn)行一個(gè)簡(jiǎn)單的查詢(xún),但我遺漏了一些非常明顯的東西。我嘗試在線(xiàn)查找,但沒(méi)有任何效果。對(duì)于某些背景,我有一個(gè)“cf”集合,我試圖在其中查詢(xún)“hsc”值等于“1”的對(duì)象,但我沒(méi)有得到任何回報(bào)。exports.getOneTodo = (request, response) => {    db        .collection('cf')        .where("hsc", "==", "1")         .get()        .then((doc) => {            if (!doc.exists) {                return response.status(404).json(                    {                         error: 'Todo not found'                     });            }            TodoData = doc.data();            TodoData.todoId = doc.id;            return response.json(TodoData);        })        .catch((err) => {            console.error(err);            return response.status(500).json({ error: error.code });        });};以下是 Firestore 規(guī)則。rules_version = '2';service cloud.firestore {  match /databases/{database}/documents {    match /{document=**} {      allow read, write    }  }}我正在通過(guò)郵遞員對(duì)此進(jìn)行測(cè)試。我已經(jīng)嘗試將 firebase 規(guī)則更改為適用于任何事物,但似乎仍然沒(méi)有任何效果。更新:以下是我初始化數(shù)據(jù)庫(kù)的方式const admin = require('firebase-admin');admin.initializeApp();const db = admin.firestore();module.exports = { admin, db };
查看完整描述

2 回答

?
達(dá)令說(shuō)

TA貢獻(xiàn)1821條經(jīng)驗(yàn) 獲得超6個(gè)贊

您的代碼需要一個(gè)文檔,但必須為查詢(xún)返回多個(gè)文檔做好準(zhǔn)備。當(dāng)您在 Query 對(duì)象上運(yùn)行時(shí)get(),它將產(chǎn)生一個(gè)QuerySnapshot對(duì)象。正如您從 API 文檔中看到的那樣,它沒(méi)有屬性exists。該屬性的檢查將始終為“假”。您要做的是檢查結(jié)果,首先查看是否有任何文檔,然后獲取第一個(gè):

db

? ? ? ? .collection('cf')

? ? ? ? .where("hsc", "==", "1")?

? ? ? ? .get()

? ? ? ? .then((qsnapshot) => {

? ? ? ? ? ? if (qsnapshot.docs.length > 0) {

? ? ? ? ? ? ? ? const dsnapshot = qsnapshot.docs[0];

? ? ? ? ? ? ? ? // send the response using dsnapshot.data()

? ? ? ? ? ? }

? ? ? ? ? ? else {

? ? ? ? ? ? ? ? // send the response saying nothing was found

? ? ? ? ? ? }

? ? ? ? })


查看完整回答
反對(duì) 回復(fù) 2023-06-09
?
HUWWW

TA貢獻(xiàn)1874條經(jīng)驗(yàn) 獲得超12個(gè)贊

現(xiàn)在你需要使用

  db.collection("id").whereGreaterThan("field","value")
  .whereEqualTo("field","value")
  .whereLessThen("field","value")


查看完整回答
反對(duì) 回復(fù) 2023-06-09
  • 2 回答
  • 0 關(guān)注
  • 159 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)