上传文件Google App - Python

时间:2016-03-09 15:08:41

标签: python google-app-engine

希望有人可以帮助治愈我的愚蠢。我正在创建一个webapp,我需要上传csv文件并进行处理。我正在努力让我的代码以最简单的形式工作。我可以加载页面但是只要我按下提交按钮发布文件,我就会得到403 Forbidden Error: Access was denied to this resource

当我在谷歌应用程序交互式控制台中运行它时,它不会给我任何错误。有人可以指出我正确的方向。

HTML:

{% extends base_layout %}


{% block header_title %}
        {% trans %}Upload Documents{% endtrans %}
{% endblock %}

{% block content %}

  <form action="/upload" method="post" enctype="multipart/form-data">
  <input type="file" name="myfile">
  <br>
  <input type="submit" name="submit" value="Submit">

{% endblock %} 

处理程序类:

class Upload(BaseHandler):
    def get(self):
        return self.render_template('upload.html')

    def post(self):

        file = self.request.POST.getall('myfile')

        #file will be process with data going into models here.

        self.response.out.write("success")

1 个答案:

答案 0 :(得分:3)

由于文件系统是只读的,因此您无法简单地将文件上传到应用引擎。您必须上传到云存储或blob存储。使用时,您必须使用每个设施。

通过表单上传文件的最简单快捷的方法是使用blobstore api