Loading...
This site is best viewed in a modern browser with JavaScript enabled.
Something went wrong while trying to load the full version of this site. Try hard-refreshing this page to fix the error.
关于 ngx.encode_args() 结果顺序的疑问
ytlm.lv
ngx.encode_args()能够保证生成的参数顺序和table顺序是一模一样的吗?
例如
ngx.encode_args({ a = true, b = "hello" }) 得到
a&b=hello
一定不会是
b=hello&a
ngx.encode_args({ b = "hello", a = true }) 得到
b=hello&a
一定不会是
a&b=hello
我自己是简单的测试了几个都是可以保证的,就是不知道代码层面是否能保证