09-01-2016, 08:45 PM
(This post was last modified: 09-01-2016, 09:22 PM by ihenn. Edited 3 times in total.)
Digging deeper, I found a workaround for this problem here. The key is to replace the special characters ("&" and "=") with codes which will later be converted back
into the corresponding character. This allows a two dimensional list to be formed, and the format is quite ugly:
= becomes %3d
& becomes %26
name1=val1&name2=subname1%3dsubval1%26subname2%3dsubval2&name3=val3
I would much rather it be more intuitive and easier to read, like the following:
name1=val1&name2=(subname1=subval1&subname2=subval2)&name3=val3
Using parentheses to group items as a value would also allow multidimensional lists to be formed from a string input.
Edit: Link to potential patch
into the corresponding character. This allows a two dimensional list to be formed, and the format is quite ugly:
= becomes %3d
& becomes %26
name1=val1&name2=subname1%3dsubval1%26subname2%3dsubval2&name3=val3
I would much rather it be more intuitive and easier to read, like the following:
name1=val1&name2=(subname1=subval1&subname2=subval2)&name3=val3
Using parentheses to group items as a value would also allow multidimensional lists to be formed from a string input.
Edit: Link to potential patch