表头映射为字段
适合从表格导出的 CSV 文本快速转成接口可读的 JSON 数组。
输入
CSV 输入
tool,category,status rgb-to-hex,color,live word-counter,text,live
首行作为表头
开启
输出
JSON 输出
[
{
"tool": "rgb-to-hex",
"category": "color",
"status": "live"
},
{
"tool": "word-counter",
"category": "text",
"status": "live"
}
]字段结果
tool, category, status