Skip to content

Instantly share code, notes, and snippets.

@clovisdasilvaneto
Created July 23, 2024 18:30
Show Gist options
  • Save clovisdasilvaneto/e93ef5b800e0dac280cd6ef6691690a1 to your computer and use it in GitHub Desktop.
Save clovisdasilvaneto/e93ef5b800e0dac280cd6ef6691690a1 to your computer and use it in GitHub Desktop.
const myObject = {
nevinha: "a",
u: "2"
}
const form = new FormData()
Object.keys(myObject).forEach(key => {
form.append(key, myObject[key])
})
fetch("http://......", {
body: form
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment