标签:file 创建数据库 run 基本使用 word tty 目录 ldb install
工程目录及文件的说明
基本操作
import pymysql pymysql.install_as_MySQLdb()
DATABASES = {
‘default‘: {
‘ENGINE‘: ‘django.db.backends.mysql‘,
‘NAME‘: ‘数据库名‘,
‘USER‘: ‘用户名‘,
‘PASSWORD‘: ‘数据库密码‘,
‘HOST‘: ‘数据服务器ip(若为本机可写:localhost)‘,
‘PORT‘: ‘3306‘,
}
}
models.py:模型,常用语创建数据库中的表
views.py:视图,常用语进行逻辑操作
admin.py:站点配置
INSTALLED_APPS = [
‘django.contrib.admin‘,
‘django.contrib.auth‘,
‘django.contrib.contenttypes‘,
‘django.contrib.sessions‘,
‘django.contrib.messages‘,
‘django.contrib.staticfiles‘,
‘myApp_name‘,
]
from django.http import HttpResponse
def good(request):
return HttpResponse(‘我的首页‘)
标签:file 创建数据库 run 基本使用 word tty 目录 ldb install
原文地址:https://www.cnblogs.com/python-1807/p/10257382.html