gpt4 book ai didi

python - 如何使用 mod_python 上传文件?

转载 作者:行者123 更新时间:2023-11-28 18:56:03 25 4
gpt4 key购买 nike

我想做一个简单的文件上传表单,我肯定完全没有能力。我已阅读文档和教程,但出于某种原因,我没有收到提交的表单数据。我写了尽可能少的代码来测试,但它仍然无法正常工作。有什么问题吗?

def index():
html = '''
<html>
<body>
<form id="fileUpload" action="./result" method="post">
<input type="file" id="file"/>
<input type="submit" value="Upload"/>
</form>
</body>
</html>
'''
return html

def result(req):
try: tmpfile = req.form['file']
except:
return "no file!"

最佳答案

尝试将 enctype="multipart/form-data"放入您的表单标签中。你的错误与 mod_python 无关。

关于python - 如何使用 mod_python 上传文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/640310/

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