前提:我用map建立了变量agrs和b之间的映射关系
map $agrs $b{
default 0;
test 1;
}
1、在location中代码如下:
location /test{
set $param1 $b;
set $args test;
echo "oparam1 = $b";
echo "param1 = $b";
}
问题:在loaction中 map的映射关系这段代码是只执行了一次吗??? 是在 location 中的第一行调用的吗????