From 584f029d4d5b03c56093a43bafa99642e5bde07c Mon Sep 17 00:00:00 2001 From: Jose Toledo Date: Sun, 21 Oct 2018 18:24:20 +0300 Subject: [PATCH] Update index.md (#19627) Added clarification as to what needs to go in to the mount. --- .../use-body-parser-to-parse-post-requests/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/guide/english/certifications/apis-and-microservices/basic-node-and-express/use-body-parser-to-parse-post-requests/index.md b/guide/english/certifications/apis-and-microservices/basic-node-and-express/use-body-parser-to-parse-post-requests/index.md index 0dd6daf118..6469e09500 100644 --- a/guide/english/certifications/apis-and-microservices/basic-node-and-express/use-body-parser-to-parse-post-requests/index.md +++ b/guide/english/certifications/apis-and-microservices/basic-node-and-express/use-body-parser-to-parse-post-requests/index.md @@ -12,6 +12,10 @@ The body-parser should already be added to your project if you used the provided ... ``` -You need to do for this challenge is pass the middleware to app.use(). Make sure it comes before the paths it needs to be used on. +All you need to do for this challenge is pass the middleware to app.use(). Make sure it comes before the paths it needs to be used on. Remember that body-parser returns with `bodyParser.urlencoded({extended: false})`. Use the following as a template: + +```javascript +app.use(middleware-function); +``` Help our community expand these hints and guides.