pycharm连接mysql数据库遇到的问题以及django使用时遇到的问题

1.

django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.

版本不匹配,把django版本换成2.1.3

2.

django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.
 

运行出错,应该设置成运行django而不是python。

3.

django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: learning_logs

我遇到的问题是名字使用重复,在setting中的

INSTALLED_APPS

改一下,在这个范围中有重复的使用这个名,删掉即可,

4.TypeError: __init__() missing 1 required positional argument: 'on_delete'

django2.0版本以后需要加on_delete

定义外键和一对一关系的时候需要加on_delete选项,此参数为了避免两个表里的数据不一致问题,不然会报错:

举例说明:
user=models.OneToOneField(User)
owner=models.ForeignKey(UserProfile)
需要改成:
user=models.OneToOneField(User,on_delete=models.CASCADE) --在老版本这个参数(models.CASCADE)是默认值
owner=models.ForeignKey(UserProfile,on_delete=models.CASCADE) --在老版本这个参数(models.CASCADE)是默认值
参数说明:
on_delete有CASCADE、PROTECT、SET_NULL、SET_DEFAULT、SET()五个可选择的值
CASCADE:此值设置,是级联删除。
PROTECT:此值设置,是会报完整性错误。
SET_NULL:此值设置,会把外键设置为null,前提是允许为null。
SET_DEFAULT:此值设置,会把设置为外键的默认值。
SET():此值设置,会调用外面的值,可以是一个函数。
一般情况下使用CASCADE就可以了。

5.django.core.exceptions.ImproperlyConfigured: Passing a 3-tuple to include() is not supported. Pass a 2-tuple containing the list of patterns and app_name, and provide the namespace argument to include() instead.

django2.0后不支持使用在urls.py中写

url(r'^admin/', include(admin.site.urls))

,直接用

path('admin/', admin.site.urls),

你可能感兴趣的:(python)