Tools to Work with the 'Splash' JavaScript Rendering Service in R
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
380 B

check_or_report_status <- function(res) {
if (httr::status_code(res) >= 400) {
msg <- httr::content(res, as="text", encoding="UTF-8")
msg <- jsonlite::fromJSON(msg)
httr::stop_for_status(
x = res,
task = sprintf(
fmt = "render due to %s",
paste0(c(msg[["type"]], msg[["description"]], msg[["info"]]), collapse="; ")
)
)
}
}