使用renderUI调用闪亮的dashboardPage

时间:2017-09-12 07:57:49

标签: javascript r shiny shinydashboard

http://shiny.rstudio.com/articles/dynamic-ui.html中,它显示了如何使用renderUI来调用服务器中的UI功能;但它不适用于仪表板页面。我猜这个问题停留在仪表板的类,而renderUI生成一个不同的对象类???可以解决这个问题吗?

我使用这些代码在仪表板页面上测试renderUI:

shinyApp(
  ui<-(uiOutput("x",replace=T)),
server<-function(input,output){
  output$x<-
    renderUI(dashboardPage(
    dashboardHeader(),
    dashboardSidebar(),
    dashboardBody()
  ))
})

0 个答案:

没有答案