视图中的重音字符未正确呈现

时间:2013-05-09 02:39:14

标签: .net razor unicode servicestack

我正在使用ServiceStack(v3.9.44.0)作为Windows服务(目标是.Net4.5),我使用Razor让ServiceStack生成并提供HTML。

事情很顺利,但有一个奇怪的问题:看来.cshtml中的硬编码unicode字符串没有正确呈现。
这就是我的意思:

Accents in Views are not rendered properly

项目视图的结构是规范的:

Views project structure

_Layout.cshtml为:

<!doctype html>
<html>
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    </head>
    <body>
        <p>Accents in \Views\_Layout.cshtml: à é ë ô</p>

        @RenderBody()
    </body>
</html>

Articles.cshtml

@inherits ViewPage<List<PrepaService.Article>>

<p>Accents in \Views\Articles.cshtml: à é ë ô</p>

Table with code-injected list of items:
<table>
    @foreach(var a in Model) {
        <tr>
            <td>@a.Description</td>
        </tr>
    }
</table>

两个文件都正确保存为无BOM的UTF8文件。

我也尝试添加以下内容,但它不会改变任何内容:

SetConfig(new EndpointHostConfig {
    AppendUtf8CharsetOnContentTypes = new HashSet<string> { ContentType.Html }
});

所以,回顾一下:

  • 我对所有文件和显式charset=utf-8内容类型定义使用无BOM的UTF8编码。

  • 这适用于_Layout.cshtml中呈现的任何内容,以及通过视图模板中的代码注入的任何内容

  • 对于视图模板中的硬编码字符串不起作用

参考文献:

1 个答案:

答案 0 :(得分:6)

好的,回答我自己的问题,万一有人偶然发现类似问题:

  • Razor似乎要求所有文件都是UTF8 BOM。

我被其中一个参考文献误导,但发现an answer to a similar question

它现在正常运作。