我正在编写一个简单的闪亮应用程序,该应用程序每5秒生成一个随机数表。我首先将伪值插入表中,然后使用observe()
在replaceData()
循环内编辑表。当我运行该应用程序时,我看到该表填充了随机数(必须来自replaceData()
调用),但是此后没有每隔5秒重新填充该表。似乎在replaceData()
函数中对observe()
的所有后续调用都将被忽略。
有人对造成此问题有任何建议/想法吗?
app.R
library(shiny)
library(DT)
library(data.table)
source("module.R")
ui <- fluidPage(
testTableUI('first')
)
server <- function(input, output, session){
callModule(testTable, 'first')
}
shinyApp(ui = ui, server = server)
module.R
testTable <- function(input, output, session){
# insert dummy values into the table
dummyDT = data.table(a=1:5, b=1:5, c=1:5)
output$testTable <- renderDataTable({dummyDT})
# trigger every 5 seconds in observe() to generate a new table
invalidateTable <- reactiveTimer(5000)
testTableProxy <- dataTableProxy(session$ns('testTable'))
observe({
invalidateTable()
print('Updating table...')
a_vals <- sample(1:100, 5)
b_vals <- sample(1:100, 5)
c_vals <- sample(1:100, 5)
newDT = data.table(a=a_vals, b=b_vals, c=c_vals)
print(newDT)
# only updates table once
replaceData(testTableProxy, newDT)
})
}
testTableUI <- function(id){
ns = NS(id)
dataTableOutput(ns("testTable"))
}
软件规格:
R:3.5.2
闪亮:1.2.0
DT:0.5
答案 0 :(得分:0)
替换
testTableProxy <- dataTableProxy(session$ns('testTable'))
使用
testTableProxy <- dataTableProxy('testTable')