这种情况我们也进行了测试和调研,这种情况只能通过富文本的方式实现汉字+特殊符号的pdf导出,代码如下
- sheet.setValue(0, 0, {
- "richText": [
- {
- "style": {
- "font": "14.6667px "Times New Roman"",
- "foreColor": "rgb(0, 0, 0)",
- "textDecoration": 0
- },
- "text": "H₂O"
- },
- {
- "style": {
- "font": "14.6667px 宋体",
- "foreColor": "rgb(0, 0, 0)",
- "textDecoration": 0
- },
- "text": "中文"
- }
- ],
- "text": "H₂O中文"
- })
复制代码
|