Environment :-
Odoo 9, Python 2.7
I have a HTML form that will look like this :-
Client Part:-
<form method="POST">
<input type="text" name="series[1234][name]" />
<input type="text" name="series[1234][value]" />
<input type="text" name="series[1235][name]" />
<input type="text" name="series[1235][value]" />
<input type="submit" />
</form>
Server Part:-
import http
# Other Imports
class Demo(http.Controller):
@http.route([
'/readable/url',
], type='http', auth="user", website=True)
def readable_url(self, **request):
# I am getting this
# {
# 'series[1234][name]' = 123,
# 'series[1234][value]' = 22,
# 'series[1235][name]' = 43,
# 'series[1235][value]' = 4434,
# }
# But I want like this
# series = {
# '1234' = {'name' = 123, 'value' = 22},
# '1235' = {'name' = 43, 'value' = 4434},
# }
I can convert this request as per my need but let me know if there is any predefined way to convert this.
here have solution on github, or npm
copy the /dist/jquery.serialize-object.min.js in odoo module structure
assets.xml (Install lib and static file)
template.xml
yourJsModule.js
main.py
P.S : In this case '1234' '1235' will become an array