部署Shinydashboard时fileDependencies.R(file)出了点问题

时间:2018-10-15 02:54:40

标签: r shiny

我写了一个基于shinydashboard的shinyapp,并将其部署到shinyapps.io时,它显示警告消息:

1:在fileDependencies.R(file)中: 无法解析C:/Users/feiwuu/AppData/Local/Temp/Rtmp42sbBV/file4dc4f7a3a5/server.R;不会发现此文件中的依赖项。 2:在fileDependencies.R(file)中: 无法解析C:/Users/feiwuu/AppData/Local/Temp/Rtmp42sbBV/file4dc4f7a3a5/ui.R;将不会发现此文件中的依赖项。

有人知道这种情况发生了什么吗? 期待您的回答。 THX

1 个答案:

答案 0 :(得分:0)

尝试在部署之前change encoding

tmp.enc <- options()$encoding
options(encoding = "UTF-8")
deployApp()
options(encoding = tmp.enc)