我知道 jQuery > 1.4 并且因为早期版本的 PHP 在 URL 参数中序列化数组,如下所示:
#1: ?param[]=value1¶m[]=value2 # (assuming the '[]' characters are URL-encoded)
还有另一种方法可以做到这一点:
#2: ?param=value1¶m=value2
是否有任何其他语言、库等使用方法 #1 进行序列化?
是否有任何 RFC 提供有关哪种方法有效的详细信息?
在 URL 参数中序列化数组的其他方法是什么?