如何在我的R Shiny应用程序中包含元标记?

时间:2018-07-11 21:14:06

标签: r shiny meta-tags

我尝试添加以下内容,但已发布的应用似乎未包含我的元标记。源代码显示head标签内部的内容似乎是默认内容。我想让我的应用程序可搜索。

tags$head(
  tags$meta(charset="UTF-8"),
  tags$meta(name="description", content="..."),
  tags$meta(name="keywords", content="..."),
  tags$meta(name="viewport", content="width=device-width, initial-scale=1.0")
)

ui<-fluidPage(...)

1 个答案:

答案 0 :(得分:3)

只需确保在fluidPage对象中包含 元标记。 Shiny会将head中的所有标签拉到适当的位置。

ui<-fluidPage(
  tags$head(
    tags$meta(charset="UTF-8"),
    tags$meta(name="description", content="..."),
    tags$meta(name="keywords", content="..."),
    tags$meta(name="viewport", content="width=device-width, initial-scale=1.0")
  ), ...)