1、django中引用javascript(转)

web开发中必然要引用一些javascript的函数库来进行一些前端的处理,django也不例外。
下面主要介绍如何在django中引用当前比较流行的js库JQuery。
首先,新建一个django工程siteWithResources
然后分别配置以下几个文件:
1.1 urls.py

urlpatterns = patterns('', 
# Example: 
# (r'^siteWithResources/', include('siteWithResources.foo.urls')), 

( r'^js/(?P<path>.*)$', 'django.views.static.serve', 
{ 'document_root': 'D:/Vim/python/django/django-resources/js/' } 
), 
) 

[b]1.2 views.py

from django.shortcuts import render_to_response 

def PageWithJquery( request ): 
return render_to_response( 'default.html', 
{"mytitle":"customize_title"}) 

1.3 default.html (引用javascript)[/b][b][indent]

<script type="text/javascript" src="/js/jquery/jquery-1.4.4.min.js"></script> 

然后就可以在default.html中使用jquery的各种函数了。
[/indent][/b]