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
I tried to use this library to serialize a complex form into json to send it as model in my controller but the list items are not serialized correctly.
Name exemple : foo.bar[0].prop Serialization : "foo.bar" : { "0.prop" : "value1", "1.prop" : "value2", "2.prop" : "value3", }
Should be : "foo" : { "bar" : [ {"prop" : "value1"}, {"prop": "value2"}, {"prop": "value3"} ] }