You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, with setValueAsArray property to true, I have to get this script before sending data :
let form = new FormData(htmlContent);
if (!!form.get("vs_input_value"))
JSON.parse(form.get("vs_input_value")).forEach((u, i) =>
form.set(`vs_input_value[${i}].id`, u)
);
Is there a better method?
The text was updated successfully, but these errors were encountered:
Hello,
I builds a form to serve a play server. This framework use this method to get multiple values
So, with
setValueAsArray
property to true, I have to get this script before sending data :Is there a better method?
The text was updated successfully, but these errors were encountered: