按照页面http://plumber.trestletech.com/
上的示例进行操作我写了myfile.R
#* @post /test
test <- function(){
list(speech='aa',source='bb',displayText='cc')
}
我在其上运行了管道工代码,将int转换为API
library(plumber)
r <- plumb("~/Work/myfile.R")
r$run(port=8000)
现在,当我使用
执行POST请求时curl -XPOST 'localhost:8000/test
-> {"speech":["aa"],"source":["bb"],"displayText":["cc"]}
但我希望删除方括号。在简单的toJSON调用中,可以使用auto_unbox = TRUE完成,但我怎样才能在管道工中完成。 如何编写自定义序列化程序并在上面的代码中使用它?
答案 0 :(得分:7)
我想到了添加自定义序列化程序的过程。 假设我们想为JSON创建一个自定义序列化程序并将其命名为“custom_json” myfile.R将是
#* @serializer custom_json
#* @post /test
test <- function(){
list(speech='aa',source='bb',displayText='cc')
}
在运行管道工代码时,它将作为
library(plumber)
library(jsonlite)
custom_json <- function(){
function(val, req, res, errorHandler){
tryCatch({
json <- jsonlite::toJSON(val,auto_unbox=TRUE)
res$setHeader("Content-Type", "application/json")
res$body <- json
return(res$toResponse())
}, error=function(e){
errorHandler(req, res, e)
})
}
}
addSerializer("custom_json",custom_json)
r <- plumb("~/Work/myfile.R")
r$run(port=8000)
现在,当我使用
执行POST请求时curl -XPOST 'localhost:8000/test
-> {"speech":"aa","source":"bb","displayText":"cc"}
答案 1 :(得分:2)
水管工提供开箱即用的number of serializers。 unboxedJSON
是one of them。
只需在端点上使用@serializer unboxedJSON
注释。
您也可以将默认序列化设置为plumber::serializer_unboxed_json
。