将cjson json转换为字符串

时间:2019-05-10 08:25:44

标签: c cjson

我正在使用cjson库来创建json并将其发送到服务器。我正在使用以下代码

char *string = cJSON_Print(json);

我得到以下输出

{
  "type1": "car",
  "type2": "bus",
}

但是服务器希望以这样的字符串格式

"{\n\t\"type1\":\t\"car\",\n\t\"type2\":\t\"bus\"\n}"

我很困惑如何实现这种转换?

0 个答案:

没有答案