tchosniper Posted June 9, 2017 Report Posted June 9, 2017 Hello,I'm trying to use function getExchangeDetails, to get old asseit and new_assetid, but if I type offer.getExchangeDetails(function(err, receivedItems) { if(!err) { console.log("New items: " + receivedItems); console.log(receivedItems[0].new_assetid); console.log(receivedItems[0].assetid); } else { console.log("[ERROR] Loading offer items details."); } });the output is:3 (But items count was 4, maybe 0 is number too)undefined or TypeError: Cannot read property '0' of undefinedundefined or TypeError: Cannot read property '0' of undefined I don't know where is the mistake, somebody can explain to me, please? Thanks, Alex. Quote
Dr. McKay Posted June 10, 2017 Report Posted June 10, 2017 The first argument to the callback is status, not receivedItems. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.