第一民族/土著字符/字体的 Coldfusion 页面显示问题(unicode?)

问题描述 投票:0回答:1

当我将以下内容保存为 .html 文件时,它会正确呈现字符;当我使用 .cfm 文件扩展名保存同一文件时,它会使用奇数字符呈现该文件。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>

<body>
Tḱemlúps te Secwépemc territory
</body>
</html>

是否需要在 Coldfusion 上配置某些内容才能使其工作?目前它看起来像保存为 .cfm 文件:

enter image description here

看起来像是保存为 .html 文件:

enter image description here

我有什么遗漏的吗?

unicode coldfusion
1个回答
0
投票
<cfprocessingdirective pageencoding="utf-8">

在 cfm 页面中使用它。

© www.soinside.com 2019 - 2024. All rights reserved.