Reading multidimensional arrays from a POST request in Django

前端 未结 3 2079
抹茶落季
抹茶落季 2021-02-08 04:53

I have a jquery client that is sending a POST request with a multidimensional array, something like this:

friends[0][id]    12345678 
friends[0][nam         


        
3条回答
  •  别那么骄傲
    2021-02-08 05:30

    This is related with that question. As stated there, I made special library for Django/Python to handle multidimensional arrays sent through requests. You can find it on GitHub here.

提交回复
热议问题