python
文章平均质量分 66
ccggww
这个作者很懒,什么都没留下…
展开
-
django 多站点urls配置
1. 包含其他 URLconf 应用程序基于多个django站点,应该考虑到URLConfig包含【include】的方式来处理urls。 from django.conf.urls.defaults import * urlpatterns = patterns('', (r'^weblog/', include('mysite.blog.urls')),转载 2014-11-26 09:11:14 · 241 阅读 · 0 评论 -
Python文件或目录操作的常用函数
◆ os.listdir(path) Return a list containing the names of the entries in the directory given by path. The list is in arbitrary order. It does not include the special entries '.' and '..' even if t转载 2014-11-26 08:25:04 · 220 阅读 · 0 评论 -
Django 403错误:CSRF verification failed. Request aborted.
解决方法,一共三步,在debug错误信息里面已经指出: 1.使用requestcontext from django.template import RequestContext … … return render_to_response('my_template.html', my_data_dictionary,转载 2014-11-29 11:59:22 · 209 阅读 · 0 评论 -
django的用户认证实现过程
1.在url.py里增加,(r'^accounts/login/$', 'django.contrib.auth.views.login'),这里,处理url的view,是系统自带的。django.contrib.auth.views.login的功能有以下2个: a.若为GET,它在同一个url中显示一个login form; b.若为POST,它将尝试登录。如果login成转载 2014-11-29 19:56:57 · 472 阅读 · 0 评论