R闪亮:renderDataTable只是不适合我(无法读取属性' bFilter' of null)

时间:2014-03-13 06:09:13

标签: r datatables shiny

如果我运行教程中提供的基本示例,我会获得一个空白页面。然后,如果我右键单击页面,并使用Inspect Element,我可以看到以下错误:

未捕获的TypeError:无法读取属性'bFilter'为null

我有什么需要修改的,或者这是一个错误?由于这个原因,我无法在我的任何应用程序中使用dataTable ...

提前感谢任何建议/意见,我们非常感谢。

干杯

ps1:我使用的代码是

runApp(list(
ui = basicPage(
h2('The mtcars data'),
dataTableOutput('mytable')
),
server = function(input, output) {
output$mytable = renderDataTable({
mtcars
})
}
))

ps2:我已经附上了一个打印屏幕 enter image description here

1 个答案:

答案 0 :(得分:1)

您碰巧使用的是2周以上的开发版本。请在Github上安装current development version。这个问题一直是fixed