首页 > 其他分享 >django_filters/rest_framework/form.html的报错问题

django_filters/rest_framework/form.html的报错问题

时间:2023-07-11 19:55:20浏览次数:38  
标签:form rest django framework 报错 filters

报错问题:

django_filters/rest_framework/form.htm

报错原因为:

1 没有装 django_filters 模块

使用pip安装

pip install django-filter

2 模块没有在配置文件中注册:

将 django_filters 添加到 installed_apps中

INSTALLED_APPS=[...'django_filters',]

 

标签:form,rest,django,framework,报错,filters
From: https://www.cnblogs.com/abc683871/p/17545774.html

相关文章