R闪亮:runApp()可以在浏览器中的“ http:// localhost:port /”而不是“ http://127.0.0.1:port/”上打开闪亮的应用程序吗?

时间:2018-09-07 18:01:09

标签: r shiny

默认情况下,闪亮的应用会打开“ http://127.0.0.1:portXYZ/”以在默认浏览器的新标签页中运行。手动输入“ http://localhost:portXYZ/”同样可以很好地运行应用程序,但它并不是R会自动弹出的URL字符串。

我为公司环境中的用户开发了一个闪亮的应用程序(通过max_line_length启动),在公司环境中,许多用户将Internet Explorer 11设置为其默认浏览器。由于某种原因(组策略安全设置?),当前的IE11安装程序无法加载“ http://127.0.0.1:portXYZ”,但可以与“ http://localhost:portXYZ”一起正常工作。 (这两种方法在其他Chrome或Firefox中都可以正常工作。)

代替要求所有人使用变通办法,是否有办法让直接打开“ localhost” URL变得闪亮?

例如,这种R语法可以很好地执行(但不能满足我的目标):

runApp()

此R语法因错误而失败(但如果有效,它将满足我的目标):

>library(shiny)
>runExample("01_hello", host = "127.0.0.1")

而未能找到127.0.0.1的IE11错误消息是:

>library(shiny)
>runExample("01_hello", host = "localhost")

Listening on http://localhost:5190
Error in startServer(host, port, handlerManager$createHttpuvApp()) : 
  Failed to create server

如果有帮助,我的R会话信息为:

"Can't reach this page. This website could not be found. Error Code: INET_E_RESOURCE_NOT_FOUND"

关于如何获得R version 3.4.2 (2017-09-28) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows >= 8 x64 (build 9200) Matrix products: default locale: [1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252 LC_MONETARY=English_United States.1252 LC_NUMERIC=C [5] LC_TIME=English_United States.1252 attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] shiny_1.0.5 loaded via a namespace (and not attached): [1] compiler_3.4.2 R6_2.2.2 htmltools_0.3.6 tools_3.4.2 pillar_1.2.1 tibble_1.4.2 Rcpp_0.12.16 jsonlite_1.5 digest_0.6.15 xtable_1.8-2 [11] httpuv_1.3.6.2 mime_0.5 rlang_0.2.0 / runApp()直接打开“本地主机”闪亮URL的任何建议?

0 个答案:

没有答案