2017-10-19 102 views
0

我在尝试将功能部署到Firebase时出现此错误。我使用过这个教程。 https://firebase.google.com/docs/functions/get-started enter image description hereFirebase功能部署错误无法找到模块firebase-admin

我的package.json是这样的。

{ 
    "name": "functions", 
    "description": "Cloud Functions for Firebase", 
    "dependencies": { 
    "firebase-admin": "^5.4.2", 
    "firebase-functions": "^0.7.1" 
    }, 
    "private": true 
} 

而且我index.js是这个

const functions = require('firebase-functions'); 
// The Firebase Admin SDK to access the Firebase Realtime Database. 
const admin = require('firebase-admin'); 
admin.initializeApp(functions.config().firebase); 

// // Create and Deploy Your First Cloud Functions 
// // https://firebase.google.com/docs/functions/write-firebase-functions 
// 
exports.helloWorld = functions.https.onRequest((request, response) => { 
response.send("Hello from Firebase!"); 
}); 
// Take the text parameter passed to this HTTP endpoint and insert it into the 
// Realtime Database under the path /messages/:pushId/original 
exports.addMessage = functions.https.onRequest((req, res) => { 
    // Grab the text parameter. 
    const original = req.query.text; 
    // Push the new message into the Realtime Database using the Firebase Admin SDK. 
    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. 
    res.redirect(303, snapshot.ref); 
    }); 
}); 

你能告诉我什么是错的代码?提前致谢。

回答

1

您的代码很好,它是一个firebase云功能问题。

issue

FWD:

我已经解决了 同样的问题在这里。这是一个火力点问题。

自昨天以来,Firebase云服务出现中断。

see this image

问题描述:https://status.firebase.google.com/incident/Functions/17024

题解:

运行函数库里面以下命令:

npm install --save-exact [email protected] npm install --save-exact [email protected] 

然后再次尝试部署功能:

firebase deploy --only functions 

我希望这有助于:)

+0

哇它的工作。你是生命的救星。非常感谢。 –

相关问题