“函数”对象没有属性“getlist”

问题描述 投票:0回答:1

我的 Django 项目有错误 我的项目无法理解

getlist
功能 问题是什么,我该怎么办?

我的代码是这样的:

req = request.post.getlist('name1[]')

错误是这样的:

AttributeError at /
'function' object has no attribute 'getlist'

python django post request
1个回答
0
投票

您没有调用该函数,将

post
替换为
post(url, data)
其中 url 是您要发布到的 url,数据是您要发布的对象

© www.soinside.com 2019 - 2024. All rights reserved.