Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Get Request In Django


def index(request):
    return HttpResponse("Hello, world. You're at the polls index.")
def hello(request):
   return render(request,'hello.html', {'name': request.method})
  #request.method is equal to get
 
PREVIOUS NEXT
Tagged: #Get #Request #In #Django
ADD COMMENT
Topic
Name
2+7 =