2016-07-07 120 views
1

我的問題很簡單,但對其他人來說很難(像我一樣)。閃亮的儀表板內的HTML頁面

我有一個閃亮的儀表板在至極我想添加一個菜單項(SE連接器)內的html頁面登錄 enter image description here

否則,如果您有任何建議這樣做,用閃亮的我會很高興

PS:我有一個Web服務來登錄,這樣我要的是想法,有一個漂亮的,時髦的登錄頁面或面板

+0

有你看着'iframe'? –

+0

http://www.w3schools.com/howto/howto_html_include.asp使用例如'

'? –

回答

1

也許你可以iframe到你的儀表板?

rm(list = ls()) 
library(shiny) 

ui <- fluidPage(titlePanel("Some Iframe"), 
       mainPanel(fluidRow(     
        tags$iframe(seamless="seamless",src="http://www.investing.com/quotes/streaming-forex-rates-%E2%80%93-majors", height=800, width=1400) 
       ) 
       ) 
) 
server <- function(input, output) {} 
shinyApp(ui, server) 

enter image description here

+0

按預期工作,謝謝 –