Domanda

Come un buon coder, tutti i miei modelli di Django ereditare da una base.html.Ora vorrei aggiungere alcune funzionalità di base per mostrare sempre alcune cose interessanti.Alcune statistiche degli utenti, o random posts, feed, etc.

Tutti i miei punti di vista simile a questa:

def viewname(request) :
    template_vales = {}
    // Stuff
    return render_to_response('some_file_name.html', template_values)

Come posso fare in modo che i valori di template_values sono sempre popolate per tutti i miei punti di vista?Devo fare questo all'inizio di tutti i miei punti di vista?Come in:

import utils

def viewname(request) :
    template_values = {}
    utils.addDefaults(template_values)
    // Stuff
    return render_to_response('some_file_name.html', template_values)

O c'è un modo migliore?

È stato utile?

Soluzione

Si dovrebbe usare il contesto processori:

http://docs.djangoproject.com/en/dev/ref/templates/api/

http://www.b-list.org/weblog/2006/jun/14/django-tips-template-context-processors/

Nel mio settings.py aggiungo un paio di funzioni a quelle standard (vedi gli ultimi due):

TEMPLATE_CONTEXT_PROCESSORS = (
  "django.core.context_processors.request",
  "django.core.context_processors.auth",
  "django.core.context_processors.debug",
  "django.core.context_processors.i18n",
  "thetrailbehind.context_processors.canonical_url",
  "thetrailbehind.context_processors.gmapkey",)

Il primo che ho aggiunto definisce l'URL canonico per la vista, e la seconda passa tra GMap chiavi.Ecco che la funzione:

def gmapkey(request):
  url = request.META['HTTP_HOST']
  key = ""
  if url == "127.0.0.1:8000":
    key = "ABQIAAAAGFSvsJjnPmsGb7IcfqoamBTpH3CbXHjuCVmaTc5MkkU4wO1RRhTaJZRNQLjBhGtJlm6eE4gJtku-Rw"   
  elif url ==  "192.168.11.3:8000":
    key = "ABQIAAAAGFSvsJjnPmsGb7IcfqoamBTm8-wcGRt2V-0p00qdRdGeyDhtGBSRTbk2s1ciA8vzdxGeAnqq6g-F4g"
  elif url ==  "192.168.11.17:7000":
    key="ABQIAAAAmHGaJpkZhJ6huJ93yfaYERTmT93Y0kqi8UE3J2QowoLz6rHdtxTHqeJ0nRoENl5LY5gCqHhRK9Yasg"
  elif url == "192.168.1.200:8000":
    key="ABQIAAAAmHGaJpkZhJ6huJ93yfaYERR5_sKpsr8Ui4YjC4HGOe8xaUDeVhSxGV1r1rIL1OvmVMAGUQBoUK0H2w"
  elif url == "192.168.1.73:8000":
    key = "ABQIAAAAGFSvsJjnPmsGb7IcfqoamBR7_CRKSBu49YjvDOLq_-DZQHSIYBSip9sO5IHlFIoZMtDpVcduFQCnWg"
  elif url == "www.trailbehind.com":
    key="ABQIAAAAGFSvsJjnPmsGb7IcfqoamBQxFGSDsNggDdRtUnAb8L8sJ910FhSKwoOpNaUlGCQIhyl6Dy5Cbyb0lQ"
  elif url == "dev.trailbehind.com":
    key="ABQIAAAAmHGaJpkZhJ6huJ93yfaYERQzqIbhF_xOwOwM1oDO_kQqYhag7BRsoTInq2lBuE7fsgDN2xfyD2IL5A"
  elif url == "trailbehind.com":
    key = "ABQIAAAAGFSvsJjnPmsGb7IcfqoamBQL9YYTGyB2pLTiscy54DOfsaXeHBQqMBmq7UvWAZVenmRMtNr_bo3TMQ"
  elif url == "tenuki.trailbehind.com":
    key = "ABQIAAAAGFSvsJjnPmsGb7IcfqoamBQ5SkJUKVREyqcvaNQJsRscGi2yVhSj0mJSTasDiWec8Awxb_TUxOdElw"
  elif url == "cabin.trailbehind.com":
    key = "ABQIAAAAmHGaJpkZhJ6huJ93yfaYERSU-76xxg1tvy-8taAiiF1qqcGi1xSmjUhmAs_v2XAuGxKX_Y-4-gDP3Q"
  elif url == "ec2-174-129-167-234.compute-1.amazonaws.com":
    key = "ABQIAAAAmHGaJpkZhJ6huJ93yfaYERStHq7nubctzsNDgkYc34LoSNrRNhQVCNy2KFFm2BT1sG2yrXrw38ycNg"

Altri suggerimenti

Per questo io uso il contesto di processori.Per esempio, se voglio ottenere variabile MEDIA_URL per ogni vista, posso definire la context_processors.py come questa:

def media_url(request):
    from django.conf import settings
    return {'MEDIA_URL': settings.MEDIA_URL}

in settings.py è necessario disporre di

TEMPLATE_CONTEXT_PROCESSORS = (
    ....
    'django.core.context_processors.request',
    'myaplication.context_processors.menuitems',
)

in vista è necessario disporre di render_to_response e context_instance=RequestContext(request) Per esempio:

def my_view(request):
return render_to_response('base.html',{},
                              context_instance=RequestContext(request))
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top