特殊字符编码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了特殊字符编码相关的知识,希望对你有一定的参考价值。
我的项目设置基于从CLI生成的Angular,我面临着显示本地德语字符的问题。
我在meta
的index.html
:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
我的编辑器VS Code设置为在UTF-8
中保存文件:
"[html]": {
"editor.detectIndentation": true,
"editor.insertSpaces": false,
"files.encoding": "utf8",
},
"[typescript]": {
"files.encoding": "utf8",
},
"files.encoding": "utf8",
我的文档请求标题:
GET /home?schedule=2 HTTP/1.1
Host: localhost:4200
Connection: keep-alive
Pragma: no-cache
Cache-Control: no-cache
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
Referer: http://localhost:4200/home?schedule=2
Accept-Encoding: gzip, deflate, br
Accept-Language: pl-PL,pl;q=0.9,en-US;q=0.8,en;q=0.7
Cookie: utilityType=HEAT
以及相应的响应头:
HTTP/1.1 200 OK
X-Powered-By: Express
Access-Control-Allow-Origin: *
Accept-Ranges: bytes
Content-Type: text/html; charset=UTF-8
Content-Length: 898
ETag: W/"382-xsHtQLNHNB+FVVszGe2IsoXNXEI"
Date: Fri, 31 Aug 2018 09:05:10 GMT
Connection: keep-alive
我正在使用带有latin-extended
集的Google字体Open Sans:
<link href="https://fonts.googleapis.com/css?family=Open+Sans&subset=latin-ext" rel="stylesheet">
任何输出结果仍然如下所示:
我已经没想到还有什么可能影响到这个?
答案
好的,正如@n.m已经提到的那样。问题是本地化文件是由外部翻译团队生成的,它将所有文本提要保存为ANSI,而不是UTF-8编码。将文件从ANSI转换为UTF已解决的问题。
以上是关于特殊字符编码的主要内容,如果未能解决你的问题,请参考以下文章
html特殊字符 编码css3 content:"我是特殊符号"
如何在 Angular 7 中对包含特殊字符的查询参数进行编码?