- 简介
在正常的请求/响应周期中访问时,request.POST和request.GET上的QueryDict将是不可变的.
要获得可变版本,您需要使用QueryDict.copy()或者._mutable = True
- 第一种方式
用request.POST调用_mutable并修改为True
reuqets.POST._mutable = True
- 第二种方式 copy方法
<QueryDict: {'title': ['水浒传2'], 'price': ['12.00'], 'pub_date': ['2020-07-03'], 'pub_id': ['2'], 'authors': ['2', '4']}>
data = request.POST.copy()
xx = data.pop('authors') #此时就可以用删除方法删除querydict中的数据了
print(xx) #['2', '4']
将querydict类型转换为普通字典
data = request.POST.dict()
<QueryDict: {'title': ['水浒传2'], 'price': ['12.00'], 'pub_date': ['2020-07-03'], 'pub_id': ['2'], 'authors': ['2', '4']}>
{'title': '水浒传2', 'price': '12.00', 'pub_date': '2020-07-03', 'pub_id': '1', 'authors': '4'}
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:django中修改QueryDict数据类型和转成普通字典 - Python技术站