每当另一个具有不同输入 id的值发生变化时,我需要selectInput
使用其自己的输入 id更改 one 的值。selectInput
在 javascript 中,这将是onchage
,但我无法弄清楚如何将两者连接起来。
jQuery或R代码都可以。
编辑:让它与这个代码一起工作:
observe({
choices <- input$product
updateSelectInput(session, "productexperiance",
choices=c("NA", paste(ProductList())), selected="NA")
})
我仍然不明白为什么它会起作用。