影响流星服务页面的编码?

时间:2012-08-01 15:19:50

标签: meteor

如何为使用meteor的网页设置编码?目前我的Firefox一直在输出此警告:

The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must to be declared in the document or in the transfer protocol.

1 个答案:

答案 0 :(得分:1)

只需在html文件的任何<head>部分内设置编码:

<head>
    <meta charset="UTF-8">
    <title>Whatever</title>
</head>

来自Meteor的文档:

  

Meteor应用程序中的HTML文件处理方式略有不同   从服务器端框架。 Meteor扫描你的所有HTML文件   三个顶级元素的目录:<head><body>和   <template>。头部和身体部分分开连接   分成单个头部和身体,然后传送给客户端   初始页面加载。