local variable

Solutions on MaxInterview for local variable by the best coders in the world

showing results for - "local variable"
Clive
02 Mar 2017
1Local variables are temporary, and only accessible 
2in your request scripts. Local variable values are 
3scoped to a single request or collection run, and are 
4no longer available when the run is complete.
Luna
04 Jan 2017
1Local variables are temporary values you set in your request 
2scripts using syntax :
3
4pm.variables.set("variable_key", "variable_value");
Lennard
29 Sep 2020
1    return render(request,'uploadb.html',{"i":i})