gpt4 book ai didi

python - Tornado Web 应用程序中的 Unicode 字符串

转载 作者:太空宇宙 更新时间:2023-11-03 19:31:28 25 4
gpt4 key购买 nike

如何在tornado View 或模板中使用unicode字符串?
我在模板中插入
<meta http-equiv="content-type" content="text/html;charset=utf-8" />并在 View 中

# -- coding: utf-8 --
输出是???

最佳答案

一旦您准备好 unicode 字符串,请求就会结束

self.render("template.html", aString=aUnicodeString)

这将呈现文件“template.html”,将 aString 变量设置为 aUnicodeString。

template.html 看起来像这样:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
{{aString}}
</body>
</html>

也可以在 Tornado 服务器中内联 HTML。

self.render('<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /></head><body>{{aString}}</body></html>', aString=aUnicodeString)

有关模板的更多信息:

Tornado Web Server Documentation

关于python - Tornado Web 应用程序中的 Unicode 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5647648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com