gpt4 book ai didi

node.js - 复杂 url 查询字符串规范

转载 作者:太空宇宙 更新时间:2023-11-03 22:36:20 25 4
gpt4 key购买 nike

我一直在尝试 Node.js 的查询解析器,我能够让它将一些非常复杂的查询解析为非常深层嵌套的对象和数组。一些例子:

查询字符串:

1) '?$or=foo&$or=bar'
2) '?$or[foo]=bar'
3) '?$or[0][foo]=bar&or[1][bar]=baz'
4)'?$or[0][foo]=bar&or[1][bar][]=baz&or[1][bar][]=bing&or[1][bar][]=bang'

Node 将它们解析为:

1) { 
$or: ['foo', 'bar']
}

2) {
$or: {
foo: 'bar'
}
}

3) {
$or: [
{ foo: 'bar' },
{ bar: 'baz' }
]
}

4) {
$or: [
{ foo: 'bar' },
{ bar: ['baz', 'bing', 'bang'] }
]
}

这很酷,但我找不到任何有关其工作原理的文档。我看到了几个指向 this document 的链接,它有这样的说法:

A host identified by an Internet Protocol literal address, version 6 [RFC3513] or later, is distinguished by enclosing the IP literal within square brackets ("[" and "]"). This is the only place where square bracket characters are allowed in the URI syntax.

听起来我至少在 Node 之外使用这种语法是不安全的,但是为什么 Node 决定它应该以这种方式工作,他们是否在任何地方记录了这一点?

最佳答案

经过更多挖掘,我在 express.js 4.x docs 中发现了这一点。 Express 的查询解析器基于 qs parser 。我正在运行express 3.x,其文档似乎没有提及 qs 或任何高级解析功能,但所有 qs 文档似乎仍然适用。

关于node.js - 复杂 url 查询字符串规范,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28007206/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com