在下面的代码中,我有两个反应函数,比如 A 和 B(我想通过一个隔离函数和两个操作按钮来控制它们),但只有 A 可以工作。如果我改变函数的顺序(我的意思是,我先写 B,然后写 A),那么 B 是唯一有效的。
该程序正在读取和编辑一个 postgreSQL 数据库。函数 B 在表中插入新行。函数 A 删除同一张表的一行。
shinyServer(
function(input, output) {
pool <- dbPool(
drv = dbDriver("PostgreSQL", max.con = 100),
dbname = "postgres",
host = "localhost",
user = "postgres",
password = "123",
idleTimeout = 36000
)
# Show table in the ui #
output$view <- renderDataTable({
dbTable<-dbGetQuery(pool, "SELECT * FROM Table")
dbTable <- select(dbTable, name, lastname)
names(dbTable)<-c('Name', 'Lastname')
dbTable
})
# show droplist in the ui #
output$selector <- renderUI({
droplist <- dbGetQuery(pool, "SELECT name FROM Table")
selectInput("paria", "Delete row", droplist$name)
})
# Delete Row # Function A #
output$val1 <- renderText({
delete <- sprintf(
"DELETE FROM %s WHERE %s = '%s'",
"Table",
"name",
input$paria
)
if (input$action1 == 0)
return()
isolate({
dbGetQuery(pool, delete)
print("Deletion Successful")
})
})
# Insert row # Function B #
output$val1 <- renderText({
query <- sprintf(
"INSERT INTO %s (%s, %s) VALUES ('%s', '%s')",
"Table",
"name",
"lastname",
input$name,
input$lastname
)
if (input$action2 == 0)
return()
isolate({
dbGetQuery(pool, query)
print("Update Successful")
})
})
})
用户界面如下:
shinyUI(pageWithSidebar(
headerPanel("Little Program"),
sidebarPanel(
conditionalPanel(condition="input.conditionedPanels==1",
textInput("name", "Name"),
textInput("lastname", "Lastname"),
actionButton("action", "Save new person"),
br(),br(),
uiOutput("selector"),
actionButton("action2", "Delete existing person")
),
conditionalPanel(condition="input.conditionedPanels==2",
helpText("Content Panel 2")
)
),
mainPanel(
tabsetPanel(
tabPanel("Table", value=1, verbatimTextOutput("val1"), dataTableOutput('view')),
tabPanel("Panel 2", value=2)
, id = "conditionedPanels"
)
)
))
非常感谢你的帮助。