Created
February 24, 2019 23:25
-
-
Save beardedtim/7815b0465f75fa2b3aa5cef9d402d2af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
axios.post('/uri', { | |
title: 'Hello', | |
world: 'world' | |
}) | |
const body = req.body | |
const data = JSON.parse(body) | |
console.log(data) // { title: 'Hello', world: 'world' } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment