There is a from with various elements
<input name='id' value='123'/>
<input name='some_value' value='123'/>
<!-- thing that i want-->
<input name='array[key_1]' value='value_1'/>
<input name='array[key_2]' value='value_2'/>
<input name='array[key_3]' value='value_3'/>
<input name='array[key_4]' value='value_4'/>
</form>
If i've been used PHP, array data will be collected in $_POST["array"] So the questions is, how to collect dict "array" in django views?