“Django View” Ответ

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 создать представление

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

Ответы похожие на “Django View”

Вопросы похожие на “Django View”

Больше похожих ответов на “Django View” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования