JSON中的多行字符串
问题: I'm writing some data files in JSON format and would like to have some really long string values split over multiple lines. 我正在用JSON格式编写一些数据文件,并希望将一些非常长的字符串值分成多行。 Using python's JSON module I get a whole lot of errors, whether I use \\ or \\n as an escape. 使用python的JSON模块我得到了很多错误,无论我使用 \\ 或 \\n 作为转义。 Is it possible to have multi-line strings in JSON? 是否可以在JSON中使用多行字符串? It's mostly for visual comfort so I suppose I can just turn word wrap on in my editor, but I'm just kinda curious... 这主要是为了视觉上的舒适,所以我想我可以在我的编辑器中翻开自动换行,但我只是有点好奇...... 解决方案: 参考一: https://stackoom.com/question/A2T0/JSON中的多行字符串