3

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

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!"
4

1 回答 1

1

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

于 2009-03-12T21:54:06.333 回答