11 2020 档案

摘要:当前目录框架 一、model与view结合 1、在view导入model:打开message/views.py from django.shortcuts import render from django.http import HttpResponse import time import ha 阅读全文
posted @ 2020-11-14 19:15 冯立挺 阅读(107) 评论(0) 推荐(0) 编辑
摘要:目前目录框架: 一、创建视图 1、创建响应信息:在message/views.py里面输入 from django.shortcuts import render from django.http import HttpResponse # Create your views here. def A 阅读全文
posted @ 2020-11-14 17:06 冯立挺 阅读(169) 评论(0) 推荐(0) 编辑
摘要:一、数据库配置(MYSQL): 打开settings.py,找到下面,配置好MySQL的地址,数据库名称,账号和密码; 直接运行run manage task ,报错:没有安装MySQL插件 django.core.exceptions.ImproperlyConfigured: Error loa 阅读全文
posted @ 2020-11-11 00:34 冯立挺 阅读(181) 评论(0) 推荐(0) 编辑
摘要:一、New project:创建新项目,切换到django选择环境 二、Apps:创建成功后,再创建一个文件夹apps,专门用来放置新应用 三、startapp:创建新应用 打开tools,选择run manage.py task,打开django命令框 输入startapp messahe,创建m 阅读全文
posted @ 2020-11-09 23:43 冯立挺 阅读(168) 评论(0) 推荐(0) 编辑