前端上传文件报错:

the server responded with a status of 413(Request Entity Too Large)

解决方法是在 nginx 配置文件中添加 client_max_body_size 配置项,如下:

http{
    client_max_body_size 50M;
}