Skip to content

Instantly share code, notes, and snippets.

@arfaWong
arfaWong / index.js
Last active October 9, 2018 03:35
Axios post method requesting with x-www-form-urlencoded content type
const axios = require('axios')
const qs = require('qs');
axios.post('/foo', qs.stringify({ 'bar': 123 })
.then((result) => {
// Do somthing
})
.catch((err) => {
// Do somthing
});