4

次を使用してテキストファイルをアップロードしようとしています:

<input type="file" name="file">

このファイルは次を使用して取得されます。

class UploadHandler(webapp2.RequestHandler):
  def post(self):
    file=self.request.POST['file']
    self.response.headers['Content-Type'] = "text/plain"
    self.response.write(file.value)

私の出力は次のとおりです。

Content-Type: text/plain MIME-Version: 1.0 Content-Length: 312 Content-MD5: MDIzYzM5YmNmOWRmMzY5Zjk2MTYzZTUzNjYwMTg5YjM= content-type: text/plain content-disposition: form-data; name="file"; filename="blah.txt" X-AppEngine-Upload-Creation: 2013-04-24 07:57:23.729774 

上記のヘッダーの代わりにファイルの内容を取得する方法はありますか? ??

4

1 に答える 1