Firebase 为 post 请求给出 "path not recognized" 错误
Firebase gives "path not recognized" error for post requests
我正在使用 Firebase 来托管我的 nodejs 应用程序并正在使用 Cloud Functions。
使用命令 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
}
}
这是我的文件夹结构:-
Contents of 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) ;
COntents of requests_controller file (module imported in 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
}
})
} )
}
我找到了一个简单的修复方法 :-
"/path" (with a slash before 'path') works in nodejs but not in firebase.
"path" (without the SLASH) works both in nodejs and firebase.
而不是 action ="/postpath"
,应该是 action="postpath"
。这确保了 get 和 post 请求以 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">
。
删除 /
它可以完美运行。
我正在使用 Firebase 来托管我的 nodejs 应用程序并正在使用 Cloud Functions。
使用命令 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
}
}
这是我的文件夹结构:-
Contents of 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) ;
COntents of requests_controller file (module imported in 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
}
})
} )
}
我找到了一个简单的修复方法 :-
"/path" (with a slash before 'path') works in nodejs but not in firebase.
"path" (without the SLASH) works both in nodejs and firebase.
而不是 action ="/postpath"
,应该是 action="postpath"
。这确保了 get 和 post 请求以 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">
。
删除 /
它可以完美运行。