1👍
request.body
is just text payload. To use it as the data for the form, you should unpack it first:
form = RhymeForm(json.loads(request.body))
Source:stackexchange.com
1👍
request.body
is just text payload. To use it as the data for the form, you should unpack it first:
form = RhymeForm(json.loads(request.body))