我正在使用预先指定的 API 定义,我需要遵守:
"myTable": {
"split": [
{
"total": 0,
"perItem": [
0,
0,
0
]
}
]
我的函数的结果是一个列表(因为我使用的是应用):
Export
[[1]]
[[1]]$total
[1] 13
[[1]]$perItem
1 2 3
5 7 0
但是当我将其转换为 .json 时,它的格式与预定义的 API 定义不同:
toJSON(Export)
[{"total":[13],"perPlan":[5,7,0]}]
我想知道如何将应用的输出转换为具有预定义的 API?
我尝试将其转换为数组:
toJSON(array(Export), simplify = TRUE)
[{"total":[13],"perPlan":[5,7,0]}]
但这仍然有额外[]
的内容。