Ask Your Question
1

What is the method for sending a JSON-formatted HTTP response in Django's Generic Class Views?

asked 2022-05-10 11:00:00 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2021-06-29 17:00:00 +0000

woof gravatar image

In Django's Generic Class Views, the method for sending a JSON-formatted HTTP response is by using the JsonResponse class.

Here is an example of how to use it in a view:

from django.http import JsonResponse
from django.views.generic import View

class MyView(View):
    def get(self, request, *args, **kwargs):
        data = {'message': 'Hello, World!'}
        return JsonResponse(data)

In this example, we have defined a simple view called MyView that returns a JSON response containing a message. The JsonResponse class takes a Python dictionary and returns a JSON-encoded HTTP response with the specified content-type.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-05-10 11:00:00 +0000

Seen: 7 times

Last updated: Jun 29 '21