标签: python html apache mod-wsgi wsgi
我在这里尝试通过string.format()将包含空格的字符串传递给wsgi应用程序。
问题:HTML输出中所有空白都丢失了。
def application(): yield "<div>abc{}xyz</div>".format(" this")
产生
<div>abcthisxyz</div>
在我看来,这是wsgi的错。我错过了一些wsgi设置吗?