我看到在JSON响应中,“ \ n”不适用于字符串值,因为 下面。在Django-rest Framework中,是否有任何特定的方法
{
"count" : "10",
"results" : [
{
"id" : "10",
"output" : "line1 \n line2 \n line3"
},
]
}
答案 0 :(得分:0)
转义反斜杠字符,以便发送'\n'
作为响应。在您的示例中,尝试
替换与"output"
键关联的值:
"output" : "line1 \\n line2 \\n line3"