We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I have this structure
<form id="times"> <input name="begin[time]" value="A"> <input name="begin[date]" value="B"> <input name="end[time]" value="C"> <input name="end[date]" value="D"> </form>
I get
{ begin :{time:"A",date:"B"}, end :{time:["C"],date:["D"]} }
instead of the expected
{ begin :{time:"A",date:"B"}, end :{time:"C",date:"D"} }
The text was updated successfully, but these errors were encountered:
ce34ac1
Thanks! I just pushed the fix which will be included in the next release.
Sorry, something went wrong.
thank you:) that was fast!
No branches or pull requests
If I have this structure
I get
instead of the expected
The text was updated successfully, but these errors were encountered: