I ran into scenario where I m taking multiple input of same field type to render a form.
To give some context:
GET post_ad_form/?tree_field=brand;brand=bmw&tree_field=country;country=India
I need to return the model for brand "bmw"
and the cities for country "India"
respectively.
The structure is based on "How to design REST URI for multiple Key-Value params of HTTP GET"
How can I access params['tree_field']
?