我正在使用一个闪亮的应用程序,我想创建一个带有操作按钮的查询,该操作按钮会根据用户输入(在这种情况下为textInput input$query_user
)来更新网址。
例如,这是我的IP:http://127.0.0.1:6858
在用户填写textInput
后,单击一个操作按钮,它将把URL上传到http://127.0.0.1:6858/?lookfor=query_user
我看过这篇文章: R shiny: Add weblink to actionButton
但是它不起作用,因为该示例不会读取我的输入。
actionButton(inputId='query_button',
label="Search",
icon = icon("th"),
onclick = paste("location.href='http://127.0.0.1:6858?lookfor=",
input$query_user, "'", sep="))
)
)