Snippets Collections
async function formURLEncoded(url,params){
	const response = await axios.post ( 
      url ,
      new URLSearchParams(params)
    )
	return await response.data;
}
star

Thu Jul 20 2023 10:38:29 GMT+0000 (Coordinated Universal Time)

#nodejs #axios #form-urlencoded

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension