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

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

為什么 firebase serve 不工作但 firebase deploy 工作正常?

為什么 firebase serve 不工作但 firebase deploy 工作正常?

SMILET 2022-10-27 14:23:13
每當(dāng)我使用firebase deploy時(shí),它都會(huì)成功創(chuàng)建數(shù)據(jù),但是每當(dāng)我使用firebase serve時(shí),它就會(huì)去捕獲函數(shù)!我正在使用的功能是:exports.createUser = functions.https.onRequest((req, res) => {    const newUser = {        body: req.body.body,        userName: req.body.userName,        createdAt: admin.firestore.Timestamp.fromDate(new Date())    };    admin        .firestore().collection('screems').add(newUser)        .then(doc => {            return res.json({                message: `document ${doc.id} created successfully`            });        })        .catch(err => {            res.status(500).json({                error: 'something went wrong'            });            console.error(err);        });});我使用郵遞員檢查 API,但它總是說“出了點(diǎn)問題”;
查看完整描述

1 回答

?
烙印99

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

如有關(guān)在本地運(yùn)行功能的文檔中所述。

如果您有使用 Firebase Admin SDK 寫入 Cloud Firestore 的 Cloud Functions,則這些寫入將被發(fā)送到正在運(yùn)行的 Cloud Firestore 模擬器。如果這些寫入觸發(fā)了進(jìn)一步的 Cloud Functions,它們將在 Cloud Functions 模擬器中運(yùn)行。

部署的函數(shù)連接到您的實(shí)際 Cloud Firestore 實(shí)例,但是當(dāng)您在本地運(yùn)行函數(shù)時(shí),您需要安裝、配置和集成您的 Cloud Function 應(yīng)該使用的模擬器。


查看完整回答
反對(duì) 回復(fù) 2022-10-27
  • 1 回答
  • 0 關(guān)注
  • 105 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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