R shiny出错Check your logs or contact the app

2022-10-25 14:54:18 浏览数 (1)

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

代码语言:javascript复制
options(encoding = "UTF-8")
deployApp()

参考链接

Shiny issues 123#

0 人点赞