Express body-parser doesn't support form-data parsing. You can try using node-formidable to parse form data in express.
If your form doesn't involve sending files or complex data, I would suggest using stringified JSON as your request body which will be parsed by body-parser.