我在将闪亮的应用程序转换为使用闪亮模块时遇到问题。 在我的应用程序中,我有一个ConditionalPanel,其中conditional是DT:datatable_rows_selected的js字符串。我不明白我需要如何重写此条件才能使用ShinyModule概念。
示例: 这是正确的工作(当选择表中的行-ConditionalPanel打开时):
library(shiny)
library(DT)
shinyApp(
ui = fluidPage(
DT::dataTableOutput("testTable"),
conditionalPanel(condition = "typeof input.testTable_rows_selected !== 'undefined' && input.testTable_rows_selected.length > 0",
verbatimTextOutput("two")
)
),
server = function(input,output) {
output$testTable <- DT::renderDataTable(mtcars, selection=list(mode="multiple",target="row"))
output$two <- renderPrint(input$testTable_rows_selected)
}
)
但这是行不通的:
library(shiny)
library(DT)
testUI <- function(id) {
ns <- NS(id)
tagList(
DT::dataTableOutput(ns("testTable")),
conditionalPanel(condition = "typeof input.testTable_rows_selected !== 'undefined' && input.testTable_rows_selected.length > 0",
verbatimTextOutput(ns("two"))
)
)
}
test <- function(input,output,session) {
ns <- session$ns
output$testTable <- DT::renderDataTable(mtcars, selection=list(mode="multiple",target="row"))
output$two <- renderPrint(input$testTable_rows_selected)
# return(reactive(input$testTable_rows_selected))
}
shinyApp(
ui = testUI("one"),
server = function(input,output) {
out <- callModule(test,"one")
}
)
答案 0 :(得分:1)
非常奇怪,但是不需要像以前的答案一样构造表的新名称。 正确的-将“ ns”参数设置为条件面板,并且不要触摸js-string作为条件。 此示例正常工作:
library(shiny)
library(DT)
testUI <- function(id) {
ns <- NS(id)
tagList(
fluidPage(
DT::dataTableOutput(ns("one")),
conditionalPanel(
condition = "typeof input.one_rows_selected !== 'undefined' && input.one_rows_selected.length > 0",
ns=ns,
verbatimTextOutput(ns("two"))
)
)
)
}
test <- function(input,output,session)
{
output$one <- DT::renderDataTable(mtcars, selection=list(mode="multiple",target="row"))
output$two <- renderPrint(input$one_rows_selected)
}
shinyApp(
ui = testUI("p"),
server = function(input,output,session) { out <- callModule(test,"p")}
)