* Update index.md Completion of solution code. * Update guide/english/certifications/apis-and-microservices/basic-node-and-express/get-data-from-post-requests/index.md Co-Authored-By: Harkirat155 <harkirat.hira@gmail.com> * Update guide/english/certifications/apis-and-microservices/basic-node-and-express/get-data-from-post-requests/index.md Co-Authored-By: Harkirat155 <harkirat.hira@gmail.com>
		
			
				
	
	
		
			32 lines
		
	
	
		
			970 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			970 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
title: Get Data from POST Requests
 | 
						|
---
 | 
						|
## Get Data from POST Requests
 | 
						|
 | 
						|
 | 
						|
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds  -->
 | 
						|
 | 
						|
Just like using req.query we can do req.body to get our data. This challenge is very similar to "Get Query Parameter Input from the Client."
 | 
						|
 | 
						|
In order to get data from a post request a general format is:
 | 
						|
 | 
						|
## Hint
 | 
						|
```javascript
 | 
						|
app.post(PATH, function(req, res) {
 | 
						|
  // Handle the data in the request
 | 
						|
});
 | 
						|
```
 | 
						|
 | 
						|
## Solution
 | 
						|
```javascript
 | 
						|
app.post('/name', function(req, res) {
 | 
						|
  // Handle the data in the request
 | 
						|
  var string = req.body.first+ ' '+req.body.last;
 | 
						|
  res.json({"name": string});
 | 
						|
});
 | 
						|
```
 | 
						|
 | 
						|
 | 
						|
 | 
						|
<a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/apis-and-microservices/basic-node-and-express/use-body-parser-to-parse-post-requests/index.md' target='_blank' rel='nofollow'>Help our community expand these hints and guides</a>.
 |