Summary of Methods and Properties of the HTTP Object in the Nginx JS Module

Summary of Methods and Properties of the HTTP Object in the Nginx JS Module

1. Summary of Methods and Properties of the HTTP Object in the JS Module <span>r.args</span> Request parameters, case-sensitive, read-only. Values of repeated parameter names are converted to an array. For example, <span>'a=1&b=2&A=3&b=4&B=two%20words'</span> is converted to <span>r.args</span>, resulting in <span>{a: "1", b: ["2", "4"], A: "3", B: "two words"}</span>. <span>r.done()</span> After calling this function, the next … Read more