Skip to content

Instantly share code, notes, and snippets.

@beardedtim
Created February 24, 2019 23:25
Show Gist options
  • Save beardedtim/7815b0465f75fa2b3aa5cef9d402d2af to your computer and use it in GitHub Desktop.
Save beardedtim/7815b0465f75fa2b3aa5cef9d402d2af to your computer and use it in GitHub Desktop.
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