R管道工JSON序列化器auto_unbox

时间:2017-01-31 18:35:46

标签: json r plumber

按照页面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完成,但我怎样才能在管道工中完成。 如何编写自定义序列化程序并在上面的代码中使用它?

2 个答案:

答案 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 serializersunboxedJSONone of them

只需在端点上使用@serializer unboxedJSON注释。

您也可以将默认序列化设置为plumber::serializer_unboxed_json