0

如何为使用流星服务的页面设置编码?目前我的 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.

4

1 回答 1

1

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

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

来自 Meteor 的文档:

Meteor 应用程序中的 HTML 文件的处理方式与服务器端框架有很大不同。Meteor 扫描目录中的所有 HTML 文件以查找三个顶级元素:<head><body><template>. 头部和身体部分分别连接成一个单独的头部和身体,在初始页面加载时传输给客户端。

于 2012-08-01T19:38:33.777 回答