如何使用wsgi

时间:2019-04-13 22:27:37

标签: python html apache mod-wsgi wsgi

我在这里尝试通过string.format()将包含空格的字符串传递给wsgi应用程序。

问题:HTML输出中所有空白都丢失了。

    def application():
       yield "<div>abc{}xyz</div>".format("     this")

产生

     <div>abcthisxyz</div>

在我看来,这是wsgi的错。我错过了一些wsgi设置吗?

0 个答案:

没有答案