Multipart-class(Rook)
Multipart-class()所属R语言包:Rook
Class Multipart and object Multipart
一流的多重和对象多部分
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A convenience object for parsing multipart/form-data POST payloads.
一个方便的对象解析的multipart / form-data的POST有效载荷。
方法----------Methods----------
parse(env): Returns parsed POST payload as a named list. env is an environment created by Rhttpd and conforms to the Rook specification.
parse(env):返回一个名为list的解析POST有效载荷。 env是一个环境创建的Rhttpd和Rook规格符合。
参见----------See Also----------
Rhttpd, Request, and Response.
Rhttpd,Request,和Response。
实例----------Examples----------
s <- Rhttpd$new()
## Not run: [#不运行:]
s$start(quiet=TRUE)
## End(Not run)[#(不执行)]
s$add(name="multi",
app=function(env){
req <- Request$new(env)
res <- Response$new()
res$write('<form enctype="multipart/form-data" method=POST>')
res$write('Upload a file: <input type=file name=fileUpload>')
res$write('<input type=submit></form><br>')
post <- Multipart$parse(env)
if (length(post)){
poststr <- paste(capture.output(str(post),file=NULL),collapse='\n')
res$write(c('<pre>',poststr,'</pre>'))
}
res$finish()
}
)
## Not run: [#不运行:]
s$browse('multi') # Opens a browser window to the app.[打开一个浏览器窗口的应用程序。]
## End(Not run)[#(不执行)]
s$remove(all=TRUE)
rm(s)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|