If I understand your question correctly, you want to add additional keys and values to the FormData object after them from the form. If yes, then yes! He uses the method append:
data.append('SomeField', 'SomeValue');
You can do this with a string or with a tag Blobor Filethat suits you.
This is described on the page.
source
share