我想将R Shiny应用程序与一个社交网络的js SDK一起使用。我想从js API获取用户ID,并将其设置为textInput表单的默认值。
但是只有一次,这是第一次。
我设法使用Shiny.onInputChange()
函数(或Shiny.setInputValue()
表示闪亮> 1.1)获得的最佳结果
玩具示例:
ui <- fluidPage(
textInput("uid",label = h4("Input ID"),value = "1"),
actionButton("goButton", "Check this out!", class="btn-primary"),
# getting user id via js
tags$script(HTML(
'
uid = some_js_code;
console.log("My uid - " + uid);
// setting new value for input$uid variable
Shiny.onInputChange("uid", uid);
// for newer version of shiny
//Shiny.setInputValue("uid", uid);
'
)
server <- function(input, output, session) {
user<-reactive({
input$goButton
user <- some_function_for_uid(input$uid)
})
}
问题:
首次加载应用程序时,变量“ uid”的值不变。该值保留为textInput函数(
value="1"
)中的值服务器功能
some_function_for_uid()
仅在我按goButton时才接收变量的新值。但是,文本形式的值仍然保持不变。如何正确更改textInput中的默认值并避免描述的问题?
先感谢您。
最佳答案
要更新textInput
中的值:
$("#uid").val(uid);
我不知道您想使用该按钮做什么。这样可以吗:
ui <- fluidPage(
textInput("uid", label = h4("Input ID"), value = "1"),
verbatimTextOutput("showUID"),
#actionButton("goButton", "Check this out!", class="btn-primary"),
tags$script(HTML(
'
uid = "hello";
// setting new value in the textInput
$("#uid").val(uid);
// setting new value for input$uid variable
Shiny.onInputChange("uid", uid);
'
))
)
server <- function(input, output, session) {
user <- eventReactive(input$uid, {
rep(input$uid, 3)
})
output[["showUID"]] <- renderText({user()})
}
关于javascript - 通过js在R Shiny中设置默认的textInput值(作为js函数的结果),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55572226/