Home 解决Python bottle module Error: 413 Request Entity Too Large问题
Post
Cancel

解决Python bottle module Error: 413 Request Entity Too Large问题

服务器使用了bottle,通过http的post方法上传图片,收到如下错误:

1
Error: 413 Request Entity Too Large

解决的办法就是修改文件的大小上限:

1
2
import bottle
bottle.BaseRequest.MEMFILE_MAX = 1024 * 1024 # (or whatever you want)

即可

This post is licensed under CC BY 4.0 by the author.