无法通过猎鹰API读取文件

时间:2019-05-08 05:18:33

标签: python python-3.x api falconframework

我正在编写猎鹰api来读取文件(POST方法)

input_file = req.get_param('file')
print(input_file) # it prints None

当我尝试运行该程序并通过邮递员上传文件(作为表单数据)时,我看到以下错误。

raw = input_file.file.read()
AttributeError: 'NoneType' object has no attribute 'file'

为什么它将文件读取为None对象,如何访问文件?

0 个答案:

没有答案