有人知道如何使用 FastRWeb 捕获 POST 变量(或 HTTP 请求的其他部分)吗?FastRWeb 是一个工具,可让您在 cgi 环境中运行 r 脚本。这是一个使用 FastRWeb 的示例程序。
run <- function(n = 100, ...) {
# direct HTML output
out("<H2>Some HTML</h2>")
# all arguments are passed as strings from the URL, so convert to numeric as needed
n <- as.integer(n)
# create a WebPlot
p <- WebPlot(800, 600)
x <- runif(n)
plot(x, rnorm(n), pch=19, col=2)
# insert the plot in the page
out(p)
# verbatim print
oprint(n)
oprint(summary(x))
# HTML table
otable(data.frame(a=1:5, b=c("a","b","c","d","e")))
# return the whole page
done()
}
“n”参数将从 url 查询参数中捕获到 URL。我也想捕获 POST 内容。有谁知道如何做到这一点?
干杯。