R Shiny:includeMarkdown 无法呈现 htmlwidgets

R Shiny: includeMarkdown cannot render htmlwidgets

此 rmd 文件呈现 html 正常,但输出为空。其他 htmlwidets 也有同样的问题,比如 chartJSRadar

file.rmd:

---
title: "test"
output: html_document 
--- 

```{r}  
rpivotTable::rpivotTable(data.frame(a = c(1:10) ) , rows = 'a'    )
```

这个闪亮的应用程序中缺少 html 小部件

ui <- shinyUI(
  fluidPage(
    includeMarkdown('file.rmd')
  )
) 
server <- function(input, output) { }  
shinyApp(ui, server)

此问题与 this one

有关

回答我自己的问题。 includeMarkdown中的代码没有被knitr执行。