Daniel Qian 2018-08-20 12:11:49 +08:00
parent 31420467ae
commit 5e84dfbbc5
1 changed files with 8 additions and 1 deletions

View File

@ -52,7 +52,14 @@ Request Information:
Request Headers:
{% for i, key in ipairs(keys) do %}
{{key}}={{headers[key]}}
{% local val = headers[key] %}
{% if type(val) == "table" then %}
{% for i = 1,#val do %}
{{key}}={{val[i]}}
{% end %}
{% else %}
{{key}}={{val}}
{% end %}
{% end %}
Request Body: