django模板出现:‘WSGIRequest‘ object has no attribute ‘Get‘错误

request.GET是一个 QueryDict 类型对象,类似于字典,每个键中可以包含多个值,它能够获取所有GET的请求参数

  • 但在获取参数之前,需要先判断所请求的参数是否存在,否则就会出现以下错误:++'WSGIRequest' object has no attribute 'Get'++

修改前:

    if request.Get.get('educational'):
        defaultEducation = request.Get.get('educational')

修改后:

    if 'educational' in request.GET:
        defaultEducation = request.GET.get('educational')
相关推荐
天人合一peng20 分钟前
20201010 MTAP-3DGAM审稿意见
后端·3d·restful
demodeom20 分钟前
Python 操作 读/写 Excel
服务器·python·excel
计算机学姐42 分钟前
基于SpringBoot的汽车票网上预订系统
java·vue.js·spring boot·后端·mysql·java-ee·mybatis
进步哥44 分钟前
python之爬虫遇到返回内容乱码
开发语言·爬虫·python
哎呦没1 小时前
农村扶贫管理:SpringBoot解决方案
java·spring boot·后端
萤火架构1 小时前
使用FastAPI整合Gradio和Django
django·fastapi·gradio
云天徽上1 小时前
【NLP-06】词形还原(Lemmatization)深度解析与实践
python·机器学习·自然语言处理
Nerinic1 小时前
Python基础10
python
白狐欧莱雅1 小时前
使用Python中的DrissonPage库爬取小说网站并保存章节内容(bqg)
经验分享·笔记·python·自动化·drissonpage
武子康1 小时前
大数据-197 数据挖掘 机器学习理论 - scikit-learn 泛化能力 交叉验证
大数据·人工智能·python·机器学习·数据挖掘·scikit-learn