Meteor server method returns undefined in callback

97 Views Asked by At

How can I get my server methods response in client ? When I call a server method and do a console.log on response, it gives me "undefined" on the client, but on the terminal, it returns the value as expected.

My meteor version is Meteor 1.3.2.4

Method on server

Meteor.methods({
    TestMethodOnProd : (arg) => {
        console.log("In Prod ", arg)
        return Meteor.userId()
    }
})

Calling method on client.

Meteor.call("TestMethodOnProd","Some text on prod",(err,res)=> {
    console.log("Err ",err)
    console.log("Res ",res)
})

Console.log on Client (Browser) returns

Err  undefined
Res  undefined

Console.log in the Terminal returns

Err  undefined
Res  <user_id_here>
1

There are 1 best solutions below

0
On

Try this on the client:

Meteor.call("TestMethodOnProd","Some text on prod",(err,res)=> {
   !err ? console.log(res) : console.log(err);
})