URLMap-class(Rook)
URLMap-class()所属R语言包:Rook
Class URLMap
类URLMap
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A Rook application that maps url paths to other Rook applications.
ARook的应用程序,URL路径映射到其他Rook应用程序。
方法----------Methods----------
new(...): Creates a Rook application. All arguments must be Rook applications and named as in the example.
new(...):创建一个Rook应用。所有参数都必须是Rook的应用程序和在本例中命名为。
参见----------See Also----------
Rhttpd.
Rhttpd。
实例----------Examples----------
s <- Rhttpd$new()
s$add(
name="pingpong",
app=Rook::URLMap$new(
'/ping' = function(env){
req <- Rook::Request$new(env)
res <- Rook::Response$new()
res$write(sprintf('<h1><a href="%s">Pong</a></h1>',req$to_url("/pong")))
res$finish()
},
'/pong' = function(env){
req <- Rook::Request$new(env)
res <- Rook::Response$new()
res$write(sprintf('<h1><a href="%s">Ping</a></h1>',req$to_url("/ping")))
res$finish()
},
'/?' = function(env){
req <- Rook::Request$new(env)
res <- Rook::Response$new()
res$redirect(req$to_url('/pong'))
res$finish()
}
)
)
## Not run: [#不运行:]
s$start(quiet=TRUE)
s$browse('pingpong')
## End(Not run)[#(不执行)]
s$remove('pingpong')
## Not run: [#不运行:]
s$stop()
## End(Not run)[#(不执行)]
rm(s)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|