English 中文(简体)
如何在Django通过模板标签中的请求?
原标题:How to pass a request in template tag in Django?

我在Django的一个基于网络的应用程序上工作。 我的应用程序充满了部件( 不是 Django-widgets ), 用于使用 Ajax 装载不同类型数据 。 例如, 学生名称部件正在装入用户列表, 教师名称部件正在装入学校所有教师的列表 。 要做到这一点, 我正想着一些疑问 :

  • I am using templatetag (take a look on the code http://codepad.org/2Ug9Ct3n). In this code when i am doing if request and request.is_ajax():it showing me an error None object has no attribute ajax. The problem is this that i am not able to include request properly. I have already make changes into my setting.py i.e.
     TEMPLATE_CONTEXT_PROCESSORS = (
      django.contrib.auth.context_processors.auth ,
      django.core.context_processors.static ,
      django.core.context_processors.request ,
      django.core.context_processors.media ,
     )
    

  • If that thing has no solution then would it be possible for me to write the whole template tag part in views.py? and how?
  • Instead of that if there are any possibility please post them as a answer!

    任何帮助都将是显而易见的

    问题回答

    确保您的视图( 您尚未张贴的视图) 正在以 < code> ExcessContext 将模板转换为 < code > ExcessContext 。 如果您重新使用基于分类的视图或 < code> render 快捷键, 这会自动发生 。

    然而,如果您重新使用 render_to_response ,您需要做以下工作:

    from django.template import RequestContext
    from django.shortcuts import render_to_response
    def some_view(request):
        # ...
        return render_to_response( my_template.html ,
                                  my_data_dictionary,
                                  context_instance=RequestContext(request))
    




    相关问题
    How to get two random records with Django

    How do I get two distinct random records using Django? I ve seen questions about how to get one but I need to get two random records and they must differ.

    Moving (very old) Zope/Plone Site to Django

    I am ask to move data from a (now offline) site driven by Plone to a new Django site. These are the version informations I have: Zope Version (unreleased version, python 2.1.3 ) Python Version 2.1....

    Can Django models use MySQL functions?

    Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

    Flexible pagination in Django

    I d like to implement pagination such that I can allow the user to choose the number of records per page such as 10, 25, 50 etc. How should I go about this? Is there an app I can add onto my project ...

    is it convenient to urlencode all next parameters? - django

    While writing code, it is pretty common to request a page with an appended "next" query string argument. For instance, in the following template code next points back to the page the user is on: &...

    Pragmatically adding give-aways/freebies to an online store

    Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

    热门标签