缩小 JS 时的特殊字符问题

发布于 2024-08-02 05:54:26 字数 232 浏览 6 评论 0原文

我正在使用 MVC ScriptManager 来压缩和连接我的所有 .js 文件。它工作得很好,除了如果 *.js 有特殊字符,如“á, à”,它会变成“à!”。

我正在尝试更改源代码,但到目前为止还没有成功。

有谁知道这可能是什么?

谢谢!!

I'm using MVC ScriptManager to Compress and concatenate all my .js files. It works very well, except that if a *.js has a special character such as "á, à" it turns to "Ã!".

I'm trying to change the source code but with no success so far.

Does anyone have an idea what this could be?

Thanks!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤芳又自赏 2024-08-09 05:54:26

您可以将它们写成 \u00f1。在这里您可以查找特殊字符: http://www.fileformat.info /info/unicode/char/search.htm

You can write them like \u00f1. Here you can look up the special characters: http://www.fileformat.info/info/unicode/char/search.htm

櫻之舞 2024-08-09 05:54:26

看起来源文件编码是ANSI,输出编码是UTF-8。

在 VS 中,使用“文件”菜单中的“高级保存选项”将原始 .js 文件保存为带有签名的 UTF-8 文件(代码页 65001)。

我特意将所有文本类型文件(.cs、.js、.css 等)保存为 UTF-8,以避免以后出现任何这些问题。

It looks like the source file encoding is ANSI, and the output is encoded as UTF-8.

In VS use the Advanced Save Options from the File menu to save the original .js file as UTF-8 with a signature (code page 65001).

I make a point of saving all text-type files (.cs, .js, .css, etc.) as UTF-8 to avoid any of these issues later on.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文