我正在尝试使用 django python 向客户端发送带有换行符的 json 字符串:
string += u'hello\n'
data = {'data':string}
return HttpResponse(simplejson.dumps(data), mimetype = 'application/json')
在浏览器端,我得到字符串并在文本编辑器中打开它,但看到 'hello\n' 。是因为 simplejson 转义了换行符吗?如何将它作为换行符而不是两个字符'\n'传递?