Result is undefined when I use form-data in Postman
问题 I can get the result using x-www-form-urlencoded tab in postman plug-in but case i want to get it from the form-data tab in the postman plug-in in the the chrome. var express = require('express'); var app = express(); var port = process.env.PORT || 3000; var http = require('http').Server(app); var bodyParser = require('body-parser'); var Random = require("random-js")(); app.use(bodyParser()); app.use(bodyParser.json()); app.use(bodyParser.urlencoded({ extended: false })); app.post('