我的 Django 项目有错误 我的项目无法理解
getlist
功能 问题是什么,我该怎么办?
我的代码是这样的:
req = request.post.getlist('name1[]')
错误是这样的:
AttributeError at /
'function' object has no attribute 'getlist'
您没有调用该函数,将
post
替换为 post(url, data)
其中 url 是您要发布到的 url,数据是您要发布的对象