
django
小白笑苍
沉默是一种生活方式。
展开
-
Avoiding race conditions using F() in Django
Sometimes we will meet race condition problem. you can use F() function to avoid this problem. reference: Avoiding race conditions detailed info: An F() object represents the value of a model fi...原创 2019-02-11 15:55:19 · 370 阅读 · 0 评论 -
Fix the problem ''set object is not reversible" in Django
Background I meet a problem when using Django. The trace is set object is not reversible. reason In the file urls.py, the data structure urlpatterns should be the set rather than map, so I need use th...原创 2019-02-19 11:02:36 · 369 阅读 · 0 评论 -
django source code-http(1)
The source code path:django/django/http cookie.py from http import cookies # For backwards compatibility in Django 2.1. SimpleCookie = cookies.SimpleCookie # Add support for the SameSite attribute (...原创 2019-02-13 17:52:48 · 271 阅读 · 0 评论