如何解构包含特殊字符的参数?
我正在使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论