无法在 Heroku 上使用 Flask 上传文件
Unable to upload files with Flask on Heroku
我正在尝试添加一个文件添加按钮,用于将文件上传到我的 Flask Heroku 应用程序的文件夹中,但是当我点击提交按钮时出现应用程序错误。
class PhotoForm(Form):
photo = FileField('Your photo')
submit = SubmitField('Submit')
@app.route('/upload', methods=('GET', 'POST'))
def upload():
form = PhotoForm()
if form.validate_on_submit():
filename = secure_filename(form.photo.data.filename)
form.photo.data.save("uploads/" + filename)
else:
filename = None
return render_template('upload.html', form=form, filename=filename)
这里是 upload.html:
{% extends "base.html" %}
{% import "bootstrap/wtf.html" as wtf %}
{% block page_content %}
<form action="uploads/" method="POST" enctype="multipart/form-data">
{{ wtf.quick_form(form)}}
</form>
{{filename}}
{% endblock %}
这是它抛出的错误:
2015-01-21T20:52:24.834249+00:00 heroku[router]: sock=backend at=error code=H18
desc="Request Interrupted" method=POST path="/uploads/" host=xxxx.h
erokuapp.com request_id=18dabdc3-400e-4c8b-ba8a-8d52d4cc1cb5 fwd="8.34.183.2" dy
no=web.1 connect=3ms service=6ms status=503 bytes=568
Heroku 正在中断在 uploads/
存储数据的请求,因为他们更喜欢 use temporary storage 在 tmp/
任何 tmp/
文件将 不会 在 dyno 重新启动时存在,因为 Heroku 文件系统是 ephemeral。
正在关注 12-factor app principles, Heroku expects that if your app needs storage you'll use a storage service -- the popular solution is AWS S3 also available as an add-on。
这是不正确的,Heroku 实际上不会在 /uploads
处中断请求。您遇到了描述的问题 here。
另一个答案是正确的,任何未签入 git 的文件都将在 dyno 循环或重建后消失,并且应遵循 12 因素原则,如果您需要保留文件以备不时之需上传后的时长,它们应该被发送到 S3。
然而,H18 错误代码通常表示套接字已成功连接,一些数据作为应用程序响应的一部分发送,但随后套接字在未完成响应的情况下被销毁。
您的日志中没有任何回溯,因此(来自上面的链接帮助文章):
you'll need to look more closely at the handlers for the specific
request that's failing. Logging each step of the response, including
the x-request-id header, can help.
以下是 Heroku 上关于请求路由的文档:https://devcenter.heroku.com/articles/http-routing
我正在尝试添加一个文件添加按钮,用于将文件上传到我的 Flask Heroku 应用程序的文件夹中,但是当我点击提交按钮时出现应用程序错误。
class PhotoForm(Form):
photo = FileField('Your photo')
submit = SubmitField('Submit')
@app.route('/upload', methods=('GET', 'POST'))
def upload():
form = PhotoForm()
if form.validate_on_submit():
filename = secure_filename(form.photo.data.filename)
form.photo.data.save("uploads/" + filename)
else:
filename = None
return render_template('upload.html', form=form, filename=filename)
这里是 upload.html:
{% extends "base.html" %}
{% import "bootstrap/wtf.html" as wtf %}
{% block page_content %}
<form action="uploads/" method="POST" enctype="multipart/form-data">
{{ wtf.quick_form(form)}}
</form>
{{filename}}
{% endblock %}
这是它抛出的错误:
2015-01-21T20:52:24.834249+00:00 heroku[router]: sock=backend at=error code=H18
desc="Request Interrupted" method=POST path="/uploads/" host=xxxx.h
erokuapp.com request_id=18dabdc3-400e-4c8b-ba8a-8d52d4cc1cb5 fwd="8.34.183.2" dy
no=web.1 connect=3ms service=6ms status=503 bytes=568
Heroku 正在中断在 uploads/
存储数据的请求,因为他们更喜欢 use temporary storage 在 tmp/
任何 tmp/
文件将 不会 在 dyno 重新启动时存在,因为 Heroku 文件系统是 ephemeral。
正在关注 12-factor app principles, Heroku expects that if your app needs storage you'll use a storage service -- the popular solution is AWS S3 also available as an add-on。
这是不正确的,Heroku 实际上不会在 /uploads
处中断请求。您遇到了描述的问题 here。
另一个答案是正确的,任何未签入 git 的文件都将在 dyno 循环或重建后消失,并且应遵循 12 因素原则,如果您需要保留文件以备不时之需上传后的时长,它们应该被发送到 S3。
然而,H18 错误代码通常表示套接字已成功连接,一些数据作为应用程序响应的一部分发送,但随后套接字在未完成响应的情况下被销毁。
您的日志中没有任何回溯,因此(来自上面的链接帮助文章):
you'll need to look more closely at the handlers for the specific request that's failing. Logging each step of the response, including the x-request-id header, can help.
以下是 Heroku 上关于请求路由的文档:https://devcenter.heroku.com/articles/http-routing