
Django
文章平均质量分 52
hsc_1
这个作者很懒,什么都没留下…
展开
-
django中的反向解析url
from django.conf.urls import urlfrom . import viewsurlpatterns = [ #... url(r'^articles/([0-9]{4})/$', views.year_archive, name='news-year-archive'), #...]def year_archive(request,heh...原创 2018-05-10 09:36:15 · 468 阅读 · 0 评论 -
Django模板中的标签cycle和resetcycle
base.html<!DOCTYPE html><html lang="en"><head> <title>{% block title %}My amazing site{% endblock %}</title></head><body> <div i原创 2018-05-11 09:45:06 · 1172 阅读 · 0 评论 -
django中的Paginator和Page
class Paginator(object): def __init__(self, object_list, per_page, orphans=0, allow_empty_first_page=True): self.object_list = object_list self._check_object_lis...原创 2018-08-06 17:52:24 · 1291 阅读 · 0 评论 -
关于CSRF
As an example, let’s say that an email provider lets you delete your account by submitting a form. The form sends a POST request to an account_delete endpoint on their server and deletes the account t...原创 2018-09-19 08:20:58 · 169 阅读 · 0 评论