修改
解决:他们现在修复的闪亮服务器是一个问题
我有一个奇怪的问题,我完全复制了https://developer.android.com/topic/performance/vitals/launch-time,示例应用程序不能正确地为我部署。该应用程序在本地按预期工作,但当我部署到shinyapps.io
时,该应用程序仅加载ui,甚至那是有缺陷的。
用户界面:
## ui.R
library(shiny)
shinyUI(fluidPage(
# Application title
titlePanel("Old Faithful Geyser Data"),
# Sidebar with a slider input for number of bins
sidebarLayout(
sidebarPanel(
sliderInput("bins",
"Number of bins:",
min = 1,
max = 50,
value = 30)
),
# Show a plot of the generated distribution
mainPanel(
plotOutput("distPlot")
)
)
))
服务器
## server.R
library(shiny)
shinyServer(function(input, output) {
output$distPlot <- renderPlot({
# generate bins based on input$bins from ui.R
x <- faithful[, 2]
bins <- seq(min(x), max(x), length.out = input$bins + 1)
# draw the histogram with the specified number of bins
hist(x, breaks = bins, col = 'darkgray', border = 'white')
})
})
当我在本地运行时,我得到了预期的结果: user guide
然而,当我部署时,我得到: image(注意输入已更改为文本输入)
非常感谢任何帮助