使用html-docx-js-typescript将富文本导出为
2024-04-28 本文已影响0人
时光已翩然轻擦
一、问题
- 当使用
html-docx-js-typescript
将富文本导出为word
文档时,其中的中文内容以及一些中文标点符号会显示为乱码。
二、解决方法
- 为html代码加上
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
,即:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
// 富文本的内容
</body>
</html>