- 博客(10)
- 收藏
- 关注
原创 Django:Procedre of starting a project
Create a project: $ django-admin startproject mysite The deployment runserver: $ python manage.py runserver Creating the Polls app: $ python manage.py startapp polls Write View: (1) mysite/url...
2019-07-23 14:06:14
154
转载 A shortcut: render()
from django.http import HttpResponse from django.template import loader from .models import Question def index(request): latest_question_list = Question.objects.order_by(’-pub_date’)[:5] template = lo...
2019-07-12 14:21:27
168
转载 How Django processes a request
Example Here’ s a sample URLconf: from django.urls import path from . import views urlpatterns = [ path(‘articles/2003/’, views.special_case_2003), path(‘articles/int:year/’, views.year_archive), path...
2019-07-11 16:08:20
126
转载 Context in Django
When you use a Django Template, it is compiled once (and only once) and stored for future use, as an optimization. A template can have variable names in double curly braces, such as {{ myvar1 }} and {...
2019-07-08 14:28:22
103
转载 Django: Model, Object, QuerySet
Model: A model is the single, definitive source of information about your data. It contains the essential fields and behaviors of the data you’re storing. Generally, each model maps to a single databa...
2019-06-26 10:47:12
273
转载 Django: MVC framework
Django appears to be a MVC framework, but you call the Controller the “view”, and the View the “template”. How come you don’t use the standard names?¶ Well, the standard names are debatable. In our in...
2019-06-26 10:13:09
126
转载 Django: Double underscore
Lookups that span relationships Django offers a powerful and intuitive way to “follow” relationships in lookups, taking care of the SQL JOINs for you automatically, behind the scenes. To span a relati...
2019-06-21 15:26:40
189
原创 Django: Making model changes
Three-step guide to making model changes: Change your models (in models.py). Run python manage.py makemigrations to create migrations for those changes Run python manage.py migrate to apply those chan...
2019-06-20 10:51:32
199
原创 Django: Including Apps
Django: Including Apps欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导...
2019-06-20 10:38:08
150
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人