我已经在这里和这里提出了这个问题。到目前为止,已经有了解决方法,但我仍然不明白根本原因。
当调整浏览器窗口大小后library(shiny)
使用最新的 CRAN 版本library(jsTreeR)
(2.5.0)运行以下应用程序时,可以在浏览器控制台中看到此错误:
示例应用程序:
library(jsTreeR)
library(shiny)
nodes <- list(
list(
text = "Fruits",
type = "fruit",
children = list(
list(
text = "Apple",
type = "fruit",
data = list(
quantity = 20
)
),
list(
text = "Banana",
type = "fruit",
data = list(
quantity = 31
)
),
list(
text = "Grapes",
type = "fruit",
data = list(
quantity = 34
)
)
),
state = list(
opened = TRUE
)
)
)
grid <- list(
columns = list(
list(
width = 200,
header = "Product"
),
list(
width = 150,
value = "quantity",
header = "Quantity"
)
)
)
ui <- fluidPage(
titlePanel("jsTree grid"),
jstreeOutput("jstree")
)
server <- function(input, output, session){
output$jstree <- renderJstree(jstree(nodes, search = TRUE, grid = grid))
}
shinyApp(ui, server)
jstree
仅当与参数一起提供时才会出现这种情况grid
。
@StéphaneLaurent发现该类shiny-bound-output
被分配给jstree-grid-wrapper
div 导致了问题,并且删除它可以防止错误。
我想了解为什么首先添加此类,以及是否有适当的方法来实现参数grid
而不会遇到此问题。