Firebase提供的路径无法识别"发帖请求的错误

时间:2018-01-07 16:56:15

标签: javascript node.js firebase firebase-realtime-database firebase-hosting

我正在使用Firebase托管我的nodejs应用并使用云功能。

使用命令firebase serve --only functions,hosting我正在部署我的应用程序。

我有一个action="/putNPK"的表单,从节点运行时效果很好。

但是当我通过firebase提供服务时,我在提交表单时收到此错误。

{"error":{"code":404,"status":"NOT_FOUND","message":"/putNPK is not a recognized path.","errors":["/putNPK is not a recognized path."]}}

如何解决这个问题?

firebase.json看起来像这样: -

{
  "database": {
    "rules": "database.rules.json"
  },
  "hosting": {
    "public": "public",
    "rewrites": [
      {
        "source": "**",
        "function": "app"
      }
    ],
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ],
    "trailingSlash": true
  }
}

这是我的文件夹结构: -

enter image description here

  

index.js的内容: -

    const admin = require("firebase-admin") ; 
const express = require("express") ; 
const app = require("express")() ; 
const bodyparser = require("body-parser") ; 
const functions = require("firebase-functions") ;
const request_controller = require("./requests_controller") ; 



app.use(express.static('../public/assets/')) ; 
app.use(express.static('../public/')) ;

request_controller(app) ; 

app.use((req ,res , next)=>{
    res.status(404).redirect('404.html') ; 
})

app.listen(8000) ; 

exports.app = functions.https.onRequest(app) ;
  

requests_controller文件的内容(在index.js中导入的模块): -

    const admin = require("firebase-admin") ; 
const bodyparser = require("body-parser") ; 
const app = require("express")() ; 
const urlencodedParser =bodyparser.urlencoded({extended : true}) ;
const posthandler = require("posthandler") ;
const gethandler = require("gethandler") ;


var serviceAccount = require("C:/Users/Natesh/Documents/raita-mitra-2018-firebase-adminsdk (acnt nateshmbhat1).json");


admin.initializeApp({
  credential: admin.credential.cert(serviceAccount),
  databaseURL: "https://raita-mitra-2018.firebaseio.com"
});



//Validates POST request body and checks if the request contains all the keys('strings') in the array sent as keys argument
function validatePostBody(req , res , keys ){
    for(i in keys){
        if(!(keys[i] in req.body))
        {
            console.log("invalid post request returning ! ") ; 
            return false ; 
        }
    }
    return true ; 
}



module.exports = function Handle_requests(app)
{
    console.log('Request Handler started ! ') ;

    app.get('/' , (req , res)=>{
        res.sendFile(__dirname + '/index.html') ; 
    })

    app.get('/home' , (req , res)=>{
        res.sendFile(__dirname + '/index.html') ; 
    })


    app.post('/putNPK', urlencodedParser ,(req , res)=>{
        if(!validatePostBody(req , res , ['fertilizer' ,'crop' , 'nitrogen' , 'phone' , 'phosphorus' , 'potassium'])) return ;  

        ref = admin.database().ref('/users/' + req.body.phone) ; 
        ref.set(req.body) ;
        console.log("Added to firebase database") ;
        res.status(200).redirect('/') ;

        admin.messaging().sendToTopic('global' , {
            notification : {
                title : 'Farmer Project' ,
                body : 'notification body'
            } , 
            data : {
                nitrogen : req.body.nitrogen
            }
        })

    } )

}

1 个答案:

答案 0 :(得分:3)

我找到了一个简单的解决方案: -

  
      
  • “/ path”(在'path'之前使用斜杠)在 nodejs 中工作,但不在firebase中

  •   
  • “path”(没有SLASH)在nodejs和firebase中都有效。

  •   

而不是action ="/postpath",它应该是action="postpath"。这确保了get和post请求以相对路径方式转发到express路由器,firebase转发到相关功能。

如果路径不是相对的,例如,如果您运行本地服务器,那么action="/postpath"会解析为localhost:8000/postpath,这在nodejs中工作正常但在firebase中它不起作用,因为firebase的函数有自己的firebase托管服务器上的URL。

因此,localhost:8000/postpath甚至不会传递给我们的快速应用函数处理程序。

但是当使用action="postpath"时,它会将其解析为 http://localhost:5001/<project-id>/us-central1/app/postpath ,现在效果非常好。

编辑1: -

此外,如果您的一个或多个静态文件未获得服务(您收到404错误),可能是因为您在源的开头包含了<script src="/path">斜杠。

删除/,它可以完美运行。