如何解构包含特殊字符的参数?

发布于 2025-01-16 15:04:22 字数 388 浏览 0 评论 0原文

我正在使用querysString.parse来解构URL参数,其中一些参数带有括号[]

这是我正在解构的字符串的一部分 title=wasabi&calories=50&nutritions%5BCA%5D=500

nutritions%5BCA%5D 这是我需要的参数解构,但我不知道如何转义特殊字符。我知道我必须重命名它,但我需要先访问它!

const { title, nutrients%5BCA%5D : nutritiant  } = querysString.parse(location.search)

有什么想法我该怎么做吗?

I am using querysString.parse to deconstruct the URL parameters, and some of them have brackets [].

This is part of the string that I am deconstructing title=wasabi&calories=50&nutrients%5BCA%5D=500

nutrients%5BCA%5D this is the parameter I need to deconstruct, but I don't know how to escape the special characters. I know I have to rename it, but I need to access it first!

const { title, nutrients%5BCA%5D : nutritiant  } = querysString.parse(location.search)

Any ideas how do I do that?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文