本文最后更新于84 天前,其中的信息可能已经过时,如有错误请发送邮件到zhangzihao60102@gmail.com
新建项目
在目标路径下,打开命令行窗口 or 在vscode打开文件夹
新建Django项目
django-admin startproject mentalQuestion
对于基本的前端显示策略,在 urls.py
文件中添加代码
path("quetest/", include("quetest.urls")),
即可添加对应的前端显示
新建应用
python manage.py startapp quetest
通过这种方式进行创建的应用,都需要在全局配置文件中对其进行注册。
注册方法:在 setting.py
中,找到 INSTALLED_APPS
添加应用名称。
数据库操作
// 新建数据库
create database [database_name];
// 进入数据库操作
use [database_name];
// 新建数据表
create table [table_name]([col_name] [col_type], [col_name] [col_type]);
// 查看数据表
desc [table_name];
// 修改表的属性
alter table [table_name] modify [col_name] [col_type] [not null / null];
// 插入数据
insert into [table_name]([col_name], [col_name]) values([col_name] [col_type], [col_name] [col_type]), ([col_name] [col_type], [col_name] [col_type])