Tach!
Enctype application/x-www-form-urlencoded
Geht als Einzeiler:
const form = new FormData(); form.append('foo', 'bar'); form.append('qux', 'baz'); const serialized = Array.from(form) .map(field => `${encodeURIComponent(field[0])}=${encodeURIComponent(field[1])}`) .join('&');
Nein geht nicht als Einzeiler. FormData liefert einen ganz anderen Content-Type (Enctype siehe obenstehend).
Array.from()..
muss ich mir anschauen.
MfG