django中的转储和装载

时间:2010-07-15 09:48:35

标签: python django django-views django-templates

  from django.utils.simplejson import dumps, loads
  # -*- coding: utf-8 -*-


 def index(request):
   return render_to_response('test2/index.html')

 def add_lang(request):
   logging.debug("Got request")
   a = request.POST
    logging.debug(a["lang"])
   lang=dumps(a["lang"])
   l = Language(code=lang)
   l.save()
lang=loads(lang)

logging.debug(loads(l.code))
return render_to_response('test2/test21.html', context_instance=RequestContext(request,{'test2': l.code}))

我的问题是有没有办法将变量加载回模板file.ie中的原始格式。我想要一个类似于模板中的加载的函数。我不想在视图中这样做,因为会有很多代码更改

test21.html

    {{ test2 }}  
     //The above prints"\u0905\u0902\u0917\u094d\u0930\u0947\u091c\u093c\u0940, \u0939\u093f\u0902\u0926" 

1 个答案:

答案 0 :(得分:1)

不是没有写custom filter