解决方法:
vi /etc/yum.repos.d/base.repo
然后添加如下信息:
#generic-repos is licensed under the Mulan PSL v2.
#You can use this software according to the t
解决办法:找到python安装目录下的site-packages/django/db/backends/mysql
例如我的win下
C:\Python37\Lib\site-packages\django\db\backends\mysql(python安装目录)
第一步:打开base.py,先注释掉以
django连接数据库时,配置
DATABASES = {
'default': {
'ENGIN
Get和Post在面试中一般都会问到,一般的区别:
(1)post更安全(不会作为url的一部分,不会被缓存、保存在服务器日志、以及浏览器浏览记录中)
(2)post发送的数据更大(get有url长度限制)
(3)post能发送更多的数据类型(get只能发送ASCII字符)
(4)post比get