Is view an bhraistreas loighic Django — feidhm nó rang a ghlacann request HTTP, a dhéanann loighic (samples a iarraidh ar mhúnlaí, ionchur a phróiseáil), agus a thugann ar ais response HTTP. Is iad na views an áit ina ndéileáiltear le rud a tharlaíonn nuair a bhíonn URL rochtain.
Radharc bunaithe ar fheidhm (FBVs)
django.shortcuts render, get_object_or_404
django.http JsonResponse, HttpResponse
():
articles = Article.objects.()
render(request, , {: articles})
():
article = get_object_or_404(Article, pk=pk)
render(request, , {: article})
():
data = (Article.objects.values(, ))
JsonResponse(data, safe=)
