今天來分享一個如何在ui中可以寫判斷式
就像是if判斷式一樣
可以判斷T or F 來決定是否執行
在UI中要使用 conditionalPanel() 來判斷
以下為code
box(
conditionalPanel(
condition = "output.resultb != '無此帳號'",
h4(strong(span(textOutput("comment1_1"),style = "color:#7A090F"),
align = "left")),
plotOutput("login_pic", height = 200 , width = 900)),
conditionalPanel(
condition = "output.resultb == '無此帳號!'",
h4(strong(span("無此帳號",style = "color:#7A090F"))),
img(src = "nodata.png", height = 200, width = 300),
img(src = "nodata.png", height = 200, width = 300),
img(src = "nodata.png", height = 200, width = 300)),
textOutput("resultb")
)