重音字符 ` 会导致错误,并且 when 被缩小
Grave accent char ` causes an error an when is minified
我想缩小我的 javascript 但由于多行字符串中使用的特殊字符,我遇到了这个错误:
var string = `hello`;
这个字符`被称为*重音符号
结果:
我尝试了几个网络工具,但都出现了同样的错误:
- http://beautifytools.com/javascript-minifier.php
- https://www.minifier.org/
- https://html-css-js.com/js/compressor/
问题
如何替换这个字符以使其缩小?
我现在会尝试使用一些 shell 工具。
谢谢
已更新
这是一个更真实的片段:
var cssText = `
position:absolute;
width:500px;
height:${some_var}px;
top:60px;
left:35px;
color:greenyellow;
padding: 5px;
`;
这里有一些工具似乎可以满足您的需求
我想缩小我的 javascript 但由于多行字符串中使用的特殊字符,我遇到了这个错误:
var string = `hello`;
这个字符`被称为*重音符号
结果:
我尝试了几个网络工具,但都出现了同样的错误:
- http://beautifytools.com/javascript-minifier.php
- https://www.minifier.org/
- https://html-css-js.com/js/compressor/
问题
如何替换这个字符以使其缩小?
我现在会尝试使用一些 shell 工具。
谢谢
已更新
这是一个更真实的片段:
var cssText = `
position:absolute;
width:500px;
height:${some_var}px;
top:60px;
left:35px;
color:greenyellow;
padding: 5px;
`;
这里有一些工具似乎可以满足您的需求