首页 前端知识 vite编译html-docx.js提示With statements cannot be used with the “esm“ output format due to strict mode

vite编译html-docx.js提示With statements cannot be used with the “esm“ output format due to strict mode

2024-07-30 22:07:02 前端知识 前端哥 913 683 我要收藏

使用pnpm run dev 编译时,提示html-docx.js文件有以下错误。

ERROR] With statements cannot be used with the "esm" output format due to strict mode

    node_modules/.pnpm/html-docx-js@0.3.1/node_modules/html-docx-js/dist/html-docx.js:13103:0:
      13103with(obj||{}){~~~~~~~~

经Vite官方网站查询,发现是以下原因导致的

Vite 无法处理、也不支持仅可在非严格模式(sloppy mode)下运行的代码。这是因为 Vite 使用了 ESM 并且始终在 ESM
中使用 严格模式。
详见:https://cn.vitejs.dev/guide/troubleshooting

解决方案很简单,直接编辑修改html-docx.js中有with的语句,将它删掉后,把大括号{}中的变量使用obj.这样去处理。
例如原语句:

with(obj||{}){
__p+='MIME-Version: 1.0\nContent-Type: multipart/related;\n    type="text/html";\n    boundary="----=mhtDocumentPart"\n\n\n------=mhtDocumentPart\nContent-Type: text/html;\n    charset="utf-8"\nContent-Transfer-Encoding: quoted-printable\nContent-Location: file:///C:/fake/document.html\n\n'+
((__t=( htmlSource ))==null?'':__t)+
'\n\n'+
((__t=( contentParts ))==null?'':__t)+
'\n\n------=mhtDocumentPart--\n';
}

改为:

__p+='MIME-Version: 1.0\nContent-Type: multipart/related;\n    type="text/html";\n    boundary="----=mhtDocumentPart"\n\n\n------=mhtDocumentPart\nContent-Type: text/html;\n    charset="utf-8"\nContent-Transfer-Encoding: quoted-printable\nContent-Location: file:///C:/fake/document.html\n\n'+
((__t=( obj.htmlSource ))==null?'':__t)+
'\n\n'+
((__t=( obj.contentParts ))==null?'':__t)+
'\n\n------=mhtDocumentPart--\n';

参考:
https://blog.csdn.net/weixin_43110440/article/details/108518385

转载请注明出处或者链接地址:https://www.qianduange.cn//article/14577.html
标签
评论
发布的文章

AE、Lottie、JSON简单介绍

2024-08-12 10:08:42

VSCode配置settings.json

2024-08-12 10:08:42

JSON 格式说明

2024-08-12 10:08:34

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!