我尝试添加以下内容,但已发布的应用似乎未包含我的元标记。源代码显示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(...)
答案 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")
), ...)