创建Django项目
django-admin startproject project_test1 

新建应用:
python manage.py startapp booktest
 admin: 权限管理
 migrations.py   的作用:根据当前项目当中的模型类去生成数据库,脚本,并将脚本映射到数据库中去。
 models.py 将来我们的模型类定义在这里
 tests.py  :django自带的测试模块
 views.py  :  将来我们定义的视图和函数。
 
 
 模型定义:
  #目的:根据定义的类去创建sql语句,并生成表,将来模型类可以创建对象,然后对对象进行操作。
  #对对象的操作可映射到数据库中,来进行操作。
  from django.db import models

  # Create your models here.

  #定义必须继承Modol类

  class BookInfo(models.Model):
   btitle = models.CharField(max_length=20)
   bpub_date = models.DateTimeField()

  class HeroInfo(models.Model):
   hname = models.CharField(max_length=10)
   hgender = models.BooleanField()
   hcontent = models.CharField(max_length=1000)
  hbook = models.ForeignKey(BookInfo,on_delete=models.CASCADE)   

 #测试运行一下我们的项目。
  python manage.py runserver
  Performing system checks…

  System check identified no issues (0 silenced).

  You have 14 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.
  Run ‘python manage.py migrate’ to apply them.
  April 21, 2018 – 16:52:14
  Django version 2.0.3, using settings ‘project_test1.settings’
  Starting development server at http://127.0.0.1:8000/
  Quit the server with CTRL-BREAK.
  
  注:
    python manage.py runserver   启动运行服务器   可以指定端口  默认端口为 http://127.0.0.1:8000/
 
    python manage.py runserver 0:8000    0是0.0.0.0的快捷方式 如果您想更改服务器的IP,请将其与端口一起传递。例如,要收听所有可用的公共IP(如果您正在运行Vagrant或想要在网络上的其他计算机上展示您的工作,这很有用

 
 生成迁移:
  生成之前必须将应用注册到项目中去
   INSTALLED_APPS = [
  ‘booktest.apps.BooktestConfig’,
  ‘django.contrib.admin’,
  ‘django.contrib.auth’,
  ‘django.contrib.contenttypes’,
  ‘django.contrib.sessions’,
  ‘django.contrib.messages’,
  ‘django.contrib.staticfiles’,
 ]
  生成迁移文件命令
  python manage.py makmigrations 
  
  执行迁移:执行sql 语句生成数据表
  根据生成的迁移文件去数据库当中执行特定的sql语句。
  python manage.py migrate
  
  Operations to perform:
    Apply all migrations: admin, auth, booktest, contenttypes, sessions
  Running migrations:
    Applying contenttypes.0001_initial… OK
    Applying auth.0001_initial… OK
    Applying admin.0001_initial… OK
    Applying admin.0002_logentry_remove_auto_add… OK
    Applying contenttypes.0002_remove_content_type_name… OK
    Applying auth.0002_alter_permission_name_max_length… OK
    Applying auth.0003_alter_user_email_max_length… OK
    Applying auth.0004_alter_user_username_opts… OK
    Applying auth.0005_alter_user_last_login_null… OK
    Applying auth.0006_require_contenttypes_0002… OK
    Applying auth.0007_alter_validators_add_error_messages… OK
    Applying auth.0008_alter_user_username_max_length… OK
    Applying auth.0009_alter_user_last_name_max_length… OK
    Applying booktest.0001_initial… OK
    Applying sessions.0001_initial… OK

版权声明:本文为gaozd原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/gaozd/p/8902409.html