Skip to content

Instantly share code, notes, and snippets.

@steffen-wirth
Created September 6, 2024 14:16
Show Gist options
  • Save steffen-wirth/cf52b74a51268a756c4bed11e522e49c to your computer and use it in GitHub Desktop.
Save steffen-wirth/cf52b74a51268a756c4bed11e522e49c to your computer and use it in GitHub Desktop.
let postData = new FormData(form);
postData.keys().forEach(
(key) => {
console.log(key);
console.log(postData.get(key));
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment