R shiny出错Check your logs or cont
2020-08-12 本文已影响0人
jamesjin63
R-Shiny遇到中文问题:Check your logs or contact the app author for clarification.
在编写shiny程序时候,往往会出现,本地运行正常,但是Deploy时候会出错。
今天主要介绍deploy出错的问题:fail uploading my shiny app #123
image.png
dependencies in this file will not be discovered.
在上传过程中一直遇到这个问题,而且显示上传成功,但是界面打开确是:ERROR: An error has occurred. Check your logs or contact the app author for clarification.
image.png主要问题是 Shiny的UI与server中包含中文字符,对中文不识别*。解决方法:
使用命令行上传shiny,在上传前输入以下code
options(encoding = "UTF-8")
deployApp()