django 基础笔记04

  1. 一些用法及其细节:
1. uuid #  + unique=True???
 import uuid
 id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
3. Fields: *null is purely database-related, whereas blank is validation-related*
4. help_text="Please use the following format: YYYY-MM-DD."
  1. 如果使用postgresql ,这样设置:
DATABASES = {
   'default': {
  ​     'ENGINE': 'django.db.backends.postgresql',
  ​     'NAME': 'mydatabase',
  ​     'USER': 'mydatabaseuser',
  ​     'PASSWORD': 'mypassword',
  ​     'HOST': '127.0.0.1',
  ​     'PORT': '5432',
   }
  }
  1. 其他心得:
0.目前主要是搞后端的部分。前端的页面展示的效果,先搁置了。
1. 学习方法,到底是按部就班,还是直接向大师学习。
2. 学习方法:记住一点,一定要大胆去测试。
3. 不怕乱,多写注释啊
4. 一个功能写完了。再去测试。来回测试很费时间。

你可能感兴趣的:(django 基础笔记04)