I tried sending some form data to my node server but req.body
has none of my form fields the node side
var express = require('express')
var app = express()
var path = require('path')
var bodyParser = require('body-parser')
app.use(bodyParser.urlencoded({
extended: true
}));
app.get('/', function (req, res) {
res.sendFile('index.html')
})
app.post('/sendmail', function (req, res) {
const formData = req.body.formData
this is what I'm sending from the browser
fetch('/send', {
method: 'POST',
body: new FormData(form)
})
in dev tools I only see the data passed in the Referer, maybe that is my issue
Referer:http://localhost:3000/?name=&budget=%C2%A31000
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…