我想在标签/应用关闭之前显示确认模式,但前提是确实进行了更改。
我发现了一些有用的功能here,但是每次我要关闭应用程序/选项卡时,它们都会显示模式。在下面的示例中,我使用了@Matee Gojra的goodbye
函数。
我以为我可以将R中的布尔值发送到JavaScript,并且仅在进行更改的情况下执行该函数。
但是很明显,如果我在函数中包含if条件,它将不再起作用。
我该如何进行这项工作?或者这是故意做到的?
library(shiny)
js <- HTML("
var changes_done = false;
Shiny.addCustomMessageHandler('changes_done', function(bool_ch) {
console.log('Are changes done?');
console.log(bool_ch);
changes_done = bool_ch;
});
function goodbye(e) {
if (changes_done === true) {
if(!e) e = window.event;
//e.cancelBubble is supported by IE - this will kill the bubbling process.
e.cancelBubble = true;
//This is displayed on the dialog
e.returnValue = 'Are you sure you want to leave without saving the changes?';
//e.stopPropagation works in Firefox.
if (e.stopPropagation) {
e.stopPropagation();
e.preventDefault();
}
}
}
window.onbeforeunload = goodbye;
")
ui <- fluidPage(
tags$head(tags$script(js)),
actionButton("add_sql", "Make Changes"),
verbatimTextOutput("sqls")
)
server <- function(input, output, session) {
sqlCmd <- reactiveVal(NULL)
## Simulate a Change
observeEvent(input$add_sql, {
sqlCmd(runif(1, 1, 1000))
})
output$sqls <- renderPrint({
req(sqlCmd())
sqlCmd()
})
## Are changes made? Send to JS
observe({
if (!is.null(sqlCmd())) {
session$sendCustomMessage("changes_done", 'true')
} else {
session$sendCustomMessage("changes_done", 'false')
}
})
}
shinyApp(ui, server)
当JS代码段中的此条件if (changes_done === true) {}
被注释掉或删除时,该模式会在关闭应用程序之前出现,但不会出现。
答案 0 :(得分:2)
您必须使用TRUE
,而不是'true'
:
session$sendCustomMessage("changes_done", TRUE)
还有FALSE
,而不是'false'
。