[Answered ]-Trying to do a POST request from node.js to Django

2👍

request.POST will. HttpRequest is a class, and you have its instance. Just like docs say HttpRequest.method is a thing, but you write request.method.

(Yes, the docs are confusing, and not showing well the difference between class and instance values.)

👤Amadan

Leave a comment