“Django View” Kod odpowiedzi

Django View

from django.http import HttpResponse #last line below allows MyView.get 
# to return an HttpResponse object 
from django.views import View #View is to become the parent class of MyView

class MyView(View):
	''' View is the parent class that provides method as_view() to MyView '''
    def get(self, request, *args, **kwargs):
        return HttpResponse('Hello, World!')
ruperto2770

Django Utwórz widok

class AuthorCreateView(CreateView):
    form_class = AuthorForm
    template_name = 'author_new.html'
    success_url = 'success'
omeatai

Odpowiedzi podobne do “Django View”

Pytania podobne do “Django View”

Więcej pokrewnych odpowiedzi na “Django View” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu