Here is a sample that works with Java but not with njs :

function my() {
    resp = "Start";
    console.log ('Initial resp is ' + resp);

    function done() {
        resp += "AndContinue";
        console.log('In loop resp is ' + resp)
    }

    done();
}
resp = 'empty'
my();
console.log('End Resp is : ' + resp)

With java :

root@linux3:/etc/nginx# js test.js
Initial resp is Start
In loop resp is StartAndContinue
End Resp is : StartAndContinue


With NJS :

root@linux3:/etc/nginx# njs test.js
ReferenceError: "resp" is not defined in 16


Don't know why it doesn't work the same in both runtime.

Thanks

Posted at Nginx Forum: 
https://forum.nginx.org/read.php?2,281699,281747#msg-281747

_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to