
django
梧桐叶123
这个作者很懒,什么都没留下…
展开
-
django单元测试
一、django单元测试在tests.py目录编写单元测试内容创建子类django.test.TestCase,内容如下:import datetimefrom django.test import TestCasefrom django.utils import timezonefrom .models import Questionclass QuestionModelTests(TestCase): def test_was_published_recently_with_f原创 2021-11-11 09:56:30 · 889 阅读 · 0 评论 -
django学习问题及解决方法
一、django的官方文档参考,choice_set.all没有加载数据原因:没有针对poll_choice表插入数据,导致加载不到对应内容解决方法:在poll_choice中根据question_id的关联关系,插入对应数据页面展示效果:...原创 2021-10-28 09:07:20 · 170 阅读 · 0 评论 -
python+django,连接数据库mysql
一、依赖环境pythondjangomysql二、前提已创建django工程三、创建数据库在settings配置数据库DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', #数据库类型 'NAME': 'testdb', #数据库名称 'USER':'root', #账号 'PASSWORD':'123456',原创 2021-09-10 08:39:56 · 879 阅读 · 1 评论 -
Pycharm+django搭建HelloWorld项目
1.打开pycharm,选择菜单栏file>New Project注意,上面的项目名称应该为2,截图错了2、项目结构3、在djangoApp目录下的views写视图情况from django.shortcuts import renderfrom django.shortcuts import HttpResponse# Create your views here.def index(request): return HttpResponse('hello world')原创 2021-09-09 10:02:46 · 767 阅读 · 0 评论