server.R的renderDataTable中的选项被闪亮服务器上的全局配置覆盖

时间:2015-01-24 09:17:11

标签: r shiny shiny-server

我建立了一个闪亮的APP。在server.R中,我使用了renderDataTable来显示这个APP中的一些数据帧。这是脚本:

output$mytable11 = renderDataTable({
     fetchRefByKey(input$publication)
   }, options = list(lengthMenu = c(1, 2, 4, 6), searching = FALSE,
                  pageLength = 1, autoWidth = FALSE))

在我的本地计算机(Windows)上,它运行正常。 enter image description here

我在Linux服务器上安装了闪亮的服务器并配置了这个闪亮的APP。 APP运行。但似乎renderDataTable的选项被全局配置覆盖。见下图。 enter image description here

我在互联网上搜索了很多,但无法弄清楚原因。你能帮助我吗?非常感谢!

1 个答案:

答案 0 :(得分:0)

最后,我发现这是由安装的Shiny软件包版本引起的。在我的本地计算机上,Shiny包的版本是0.10.2.2。在Linux服务器上,版本为0.10.2。