以闪亮的方式显示/检测到重复的inputID

问题描述 投票:0回答:1

我想知道是否可以在不通过代码的情况下检测

inputID
应用程序中重复的
shiny
? (我只是花了很多时间在一个相当大的应用程序中手动检查代码)。

library(shiny)

ui <- fluidPage(
  pickerInput("a", "One", NULL),
  pickerInput("a", "two", NULL),
  pickerInput("b", "three", NULL),
  pickerInput("b", "Four", NULL)
)

server <- function(input, output, session) {
  
}

shinyApp(ui, server)
r shiny
1个回答
0
投票

添加

devmode()
,启动应用程序时您会看到:

enter image description here

更一般地说,使用模块,你就不太可能遇到这个问题。

© www.soinside.com 2019 - 2024. All rights reserved.