gpt4 book ai didi

python - 属性错误: 'WSGIRequest' object has no attribute 'getlist'

转载 作者:行者123 更新时间:2023-12-01 05:32:40 24 4
gpt4 key购买 nike

我似乎没有发现这个特定的错误。

我正在向 django 中的函数发送 POST,当我尝试提取数据时,我在 request.getlist 行上遇到此消息:

AttributeError: 'WSGIRequest' object has no attribute 'getlist'

功能是:

def function(request, a_id, b_id):
return_val = ""
if request.method == 'POST':
message = request.getlist("message")

#Stuff

return render_to_response("return.html", {'res':return_val}, context_instance=RequestContext(request))

最佳答案

应该是:

message = request.POST.getlist("message")

在 HttpRequest 对象中,GET 和 POST 属性是 django.http.QueryDict 的实例。 getlistQueryDict 的方法而不是 HttpRequest

关于python - 属性错误: 'WSGIRequest' object has no attribute 'getlist' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19849987/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com