闪亮应用程序中的PDF - 没有出现

时间:2018-01-08 19:09:21

标签: r shiny

我制作了以下脚本以显示1.pdf,但点击start后没有显示任何内容。

任何评论都会很棒。

欣赏!

shinyApp(
  ui <- function(){
    tagList(tabPanel(""),
            pageWithSidebar(
              headerPanel(
                ""
              ),
              sidebarPanel
              (
              tags$head(tags$style(type="text/css", ".well { max-width: 280px; }")),
              actionButton("strt", label = "Start",style="width:32%;"),
              actionButton("logout", "Logout",style="color: red; width:32%;")       
              ),
              mainPanel(tableOutput('path'))
            )
    )   
  },

  server = (function(input, output,session) {
    observeEvent(input$strt, {
      output$path <- renderUI({tags$iframe(src="E:/shiny/Correct/www/1.pdf",style="height:800px; width:100%;scrolling=yes")})   
    })
  })
)

1 个答案:

答案 0 :(得分:0)

我解决了它如下:

observeEvent(input$strt, {
    addResourcePath("pdf_folder","E:/shiny/Correct")
    output$path <- renderUI({tags$iframe(src="pdf_folder/1.pdf",style="height:800px; width:100%;scrolling=yes")})
})