使用Shiny APP中的用户输入更新URL

时间:2019-03-13 18:03:34

标签: r shiny

我正在使用一个闪亮的应用程序,我想创建一个带有操作按钮的查询,该操作按钮会根据用户输入(在这种情况下为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="))
  )
)

0 个答案:

没有答案