大家好,我是 UI 編程新手,甚至是 R閃亮新手。我有一個(gè)閃亮的用戶界面定義為: ....ui <- shinyUI( dashboardPagePlus( .... ))我想做的就是執(zhí)行一些 html 來(lái)設(shè)置網(wǎng)絡(luò)瀏覽器中選項(xiàng)卡的標(biāo)題。我嘗試過(guò)使用流體頁(yè)面對(duì)象來(lái)返回標(biāo)題,但儀表板頁(yè)面加似乎不太喜歡它,我嘗試過(guò)的其他一些事情包括:tags$head(HTML("<title>My Tab</title>"))但它似乎被解釋器忽略了。任何見(jiàn)解或資源都將不勝感激。tags$title("My Tab")使程序崩潰 ....ui <- shinyUI( dashboardPage(title = "My Tab"), dashboardPagePlus( .... ))也會(huì)使程序崩潰編輯:為了清楚起見(jiàn) 我想要做什么] 1
1 回答

千巷貓影
TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超7個(gè)贊
您不需要使用 HTML 來(lái)創(chuàng)建標(biāo)題(除非您想要進(jìn)行一些自定義格式設(shè)置)。
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
#####/UI/####
header <- dashboardHeaderPlus(
title = "My Tab"
)
sidebar <- dashboardSidebar()
rightsidebar <- rightSidebar()
body <- dashboardBody()
ui <- dashboardPagePlus(title="Browser title", header, sidebar, body, rightsidebar)
#####/SERVER/####
server <- function(session, input, output) {
}
shinyApp(ui, server)
- 1 回答
- 0 關(guān)注
- 108 瀏覽
添加回答
舉報(bào)
0/150
提交
取消