Я запустил
Служба firebase --only-functions
Затем запустил
Функции проверки addMessage
Так что я могу отладить функцию addMessage.Однако отладка не сработала.
Запуск
firebase deploy addMessage --trigger-http firebase inspect addMessage
Работал и позволял мне отлаживать, нопохоже, он не поддерживает горячую перезагрузку.
Возможно ли, чтобы горячая перезагрузка и отладка работали одновременно?
Мой index.js:
const functions = require('firebase-functions');
// The Firebase Admin SDK to access the Firebase Realtime Database.
const admin = require('firebase-admin');
admin.initializeApp();
exports.addMessage = functions.https.onRequest((req, res) => {
// Grab the text parameter.
const original = "123";//req.query.text;
// Push the new message into the Realtime Database using the Firebase Admin SDK.
return admin.database().ref('/messages').push({original: original}).then((snapshot) => {
// Redirect with 303 SEE OTHER to the URL of the pushed object in the Firebase console.
return res.redirect(303, snapshot.ref.toString());
});
});