如何解决iframe 在我的 Shiny 应用程序中无法正常工作
我希望嵌入的网站显示在侧边栏菜单的右侧,但嵌入的网站显示在侧边栏菜单中。当用户按下细胞培养下的控制图时,嵌入的网站应该清楚地显示在右侧。这是我的问题的图片
]1 library(shiny)
library(shinydashboard)
ui <-
dashboardPage(skin="black",dashboardHeader(title = "CPV Dashboard ",titleWidth = 450),dashboardSidebar(
sidebarMenu(
menuItem("Tab 1",tabName = "tab 1",icon = icon("medicine"),menuItem("Cell Culture",menuItem("Control Chart",mainPanel(fluidRow(
htmlOutput("frame")))))))
),dashboardBody())
server = function(input,output,session){
observe({
test <<- paste0("https://google.com") #sample url
})
output$frame <- renderUI({
input$Member
my_test <- tags$iframe(src=test,height=800,width=800)
print(my_test)
my_test
})
}
shinyApp(ui,server)
解决方法
我认为您需要 dashBoardBody
中的 dashboardPage
。
据我所知,您当前的代码并没有这样做。
library(shiny)
library(shinydashboard)
ui <-
dashboardPage(
skin = "black",dashboardHeader(title = "CPV Dashboard ",titleWidth = 450),dashboardSidebar(sidebarMenu(
menuItem(
"Tab 1",tabName = "tab 1",icon = icon("medicine"),menuItem("Cell Culture",menuItem("Control Chart"))
)
)),dashboardBody(mainPanel(fluidRow(htmlOutput("frame"))
),))
server = function(input,output,session) {
observe({
test <<- paste0("https://google.com") #sample url
})
output$frame <- renderUI({
input$Member
my_test <- tags$iframe(src = test,height = 800,width = 800)
print(my_test)
my_test
})
}
shinyApp(ui,server)
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。