0
I’m making a connection with the Gento, and the connection works perfectly, but when I do the function I get the message
'Referenceerror: callback is not defined'
Follows the Code,
magento.catalogProduct.list(callback);
0
I’m making a connection with the Gento, and the connection works perfectly, but when I do the function I get the message
'Referenceerror: callback is not defined'
Follows the Code,
magento.catalogProduct.list(callback);
Browser other questions tagged javascript node.js magento
You are not signed in. Login or sign up in order to post.
The error already says it all, the callback variable is not set. Place the relevant code block so we can help you.
– BrTkCa
There is no callback on my server.js, I have to set it as?
– Andre Neto
@Andreneto
callback
raisinfunction(){ console.log(arguments);}
. Works?– Sergio