第一步:settings.py DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'testdjango', # 你的数据库名称 'USER': 'root', # 你的数据库用户名 'PASSWORD': '123456', # 你的数据库密码 'HOST': '', # 你的数据库主机,留空默认为localhost 'PORT': '3306', # 你的数据库端口 } } 第二步:在app或者项…