Skip to Content
Menú
This question has been flagged
1 Respondre
4232 Vistes

i'm encountering an error like this  while fetching data

  WARNING mydb odoo.http: returns an invalid response type for an http request


Here is my python code

@http.route('/vehicle_web_form', methods=['GET'],  website=True, auth='public', csrf=False)
def vehicle_web_form(self, **kw):
print(kw)
id = kw.get("id")
print(id)
print(type(id))
return id


Avatar
Descartar
Best Answer

If you want to return the information you have to use the type JSON instead of HTTP, and return JSON.

For Eg:-

@http.route('/vehicle_web_form', type='json', auth="public", csrf=False)
def vehicle_web_form(self, **kw):
print(kw)
id = kw.get("id")
print(id)
print(type(id))
result_response = json.dumps({'data':id})
return json.loads(result_response)


Avatar
Descartar
Related Posts Respostes Vistes Activitat
1
d’ag. 24
2220
2
d’abr. 24
1525
1
de des. 23
2542
1
d’abr. 24
2063
2
d’ag. 23
2243