解决 R Shiny 报错 “Maximum upload size exceeded“ ;更改 Shiny 上传文件大小限制

2021/4/12 10:58:04

本文主要是介绍解决 R Shiny 报错 “Maximum upload size exceeded“ ;更改 Shiny 上传文件大小限制,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

遇到的问题

在shiny中上传文件时出现了报错,如下图:
在这里插入图片描述
看了一下文件大小有53M,之前传5M的文件时没有出现过报错,在参考中找到了解决方案。



解决方案

在 server.R 的开头增加了一句options(shiny.maxRequestSize=60*1024^2) ,如图所示。
在这里插入图片描述
再次上传文件后成功运行。
在这里插入图片描述



参考

“Maximum upload size exceeded” when upload csv data 中的 By default, Shiny limits file uploads to 5MB per file. You can modify this limit by using the shiny.maxRequestSize option. For example, adding options(shiny.maxRequestSize=30*1024^2) to the top of server.R would increase the limit to 30MB.



这篇关于解决 R Shiny 报错 “Maximum upload size exceeded“ ;更改 Shiny 上传文件大小限制的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程