Getting an error while calling routine from another routine. It gets executed but in the end I get this error. Tried with semicolon as well in the end. Same error.
Solved! Go to Solution.
What does your export look like in the Login script? Are exporting the testLogin function?
FYI, I tried something very simple. I have one unit called "Login" that I did the following:
function testLogin(){ Log.Message('test login') } module.exports = Login
I then created unit that looks like this
var Login = require('Login'); function test1(){ Login.testLogin() }
When I run test1 in that second unit, I get no error. So... this tells me that there's something going on in the "Login" unit that you are exporting that we can't see. Can you share all your code, please?
Thanks.
What's in the "Login" unit that you're set up for? How do you have the modules.export set up? It might be helpful to see how that's working to know better how to help you.
What does your export look like in the Login script? Are exporting the testLogin function?
FYI, I tried something very simple. I have one unit called "Login" that I did the following:
function testLogin(){ Log.Message('test login') } module.exports = Login
I then created unit that looks like this
var Login = require('Login'); function test1(){ Login.testLogin() }
When I run test1 in that second unit, I get no error. So... this tells me that there's something going on in the "Login" unit that you are exporting that we can't see. Can you share all your code, please?
Thanks.
Thanks so much. I was maing a mistake while exporting. Followed your methid and it has helped
User | Count |
---|---|
4 | |
4 | |
1 | |
1 | |
1 |
Subject | Author | Latest Post |
---|---|---|