Django mysqlclient安装和使用详解

时间:2021-05-22

一、安装mysqlclient

网上看到很过通过命令:pip install mysqlclient 进行安装的教程,但是我却始终安装失败,遇到的错误千奇百怪,后来通过自己下载mysqlclient客户端终于安装成功;

首先打开网址:https://mand": "SET sql_mode='STRICT_TRANS_TABLES'", } }}

其中NAME是你的数据库名称,HOST是数据库地址,其它的大家都知道。

7.接下来我们到views.py(或者自己创建的py文件)中编写代码主要看 addExam 这个方法:

from django.http import HttpResponsefrom django.shortcuts import renderfrom TcesApp.models import e_examsdef hello(request): return HttpResponse('home page!')def helloworld(request): context = {} context['value'] = 'hello world!' return render(request, 'helloworld.html', context)def addExam(request): exam = e_exams() exam.ID = '100001' exam.SceneID = '1001', exam.ExamName = '期末考试' exam.save() context = {} context['value'] = exam.ExamName + '数据添加成功!' return render(request,'helloworld.html',context)

其中helloworld.html是放在templates中的前端页面:

context['value']就是html页面中的{{value}}

8.到urls.py中添加路径完整代码如下:

from django.contrib import adminfrom django.urls import pathfrom . import homeurlpatterns = [ path('admin/', admin.site.urls), path('home/', home.hello), path('helloworld/', home.helloworld), path('add/',home.addExam)]

三、运行效果如下:

到此这篇关于Django mysqlclient安装和使用详解的文章就介绍到这了,更多相关Django mysqlclient安装使用内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章