我已经安装django-smart-selects
了,但是当我在urls.py
url(r'^chaining/', include('smart_selects.urls')),
当我在此之后运行我的应用程序时出现此错误
from django.utils.encoding import force_text ImportError: cannot import name 'force_text' from 'django.utils.encoding'
所以在这里django.utils.encoding
我没有找到任何导入force_text
,所以我将其更改为force_str
.
我正在使用 django 4.0