JavaScript 安全字符串

发布于 2025-01-08 15:55:48 字数 206 浏览 0 评论 0原文

当我尝试编写这样的 JS 语句时

var a = "\images\avatars\";

,我收到错误 SyntaxError: Unexpected token ILLEGAL

这肯定是因为 \ 符号,但我需要它们。 那么如何才能保证这个字符串的安全呢?

附言。转义,encodeURI 没有帮助

when I try to write such JS statement

var a = "\images\avatars\";

I am getting an error SyntaxError: Unexpected token ILLEGAL

This is definitely because of \ sign, but I need them.
So how can I make this string safe?

PS. escape, encodeURI doesn't help

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

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

发布评论

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

评论(3

°如果伤别离去 2025-01-15 15:55:48

双反斜杠:

var a = "\\images\\avatars\\";

如果您将反斜杠包含在字符串文字中,则始终需要双反斜杠。您必须执行类似于在带引号的字符串中嵌入相同类型的引号的操作:

var a = 'Don\'t be cruel';

反斜杠用作转义序列

Double them:

var a = "\\images\\avatars\\";

You'll always need to double a backslash if you're including it in a string literal. You'll have to do something similar to embed the same kind of quotes in a quoted string:

var a = 'Don\'t be cruel';

The backslash serves as an escape sequence.

爱要勇敢去追 2025-01-15 15:55:48

逃避它们:

var a = "\\images\\avatars\\";

顺便说一句,为什么你需要反斜杠而不是正斜杠?

Escape them:

var a = "\\images\\avatars\\";

Why do you need backward slashes rather than forward slashes, by the way?

穿越时光隧道 2025-01-15 15:55:48

改为执行此操作。

var a = "\\images\\avatars\\";

Do this instead.

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