节点的查询字符串:相同查询参数的解析数组顺序

Node's Query String: order of parsed array for same query parameters

Node 的查询字符串的 documentation 状态:

For example, the query string 'foo=bar&abc=xyz&abc=123' is parsed into:

{
 foo: 'bar',
 abc: ['xyz', '123']
}

仍然没有明确说明 URL 中相同参数值的顺序始终保持不变。这个有保障吗?

是的。值附加到数组的末尾: https://github.com/nodejs/node/blob/master/lib/querystring.js#L250