我正在尝试将Coinbase与Node Js集成在一起,但是我无法执行教程页面上给出的代码。我的代码是
`var coinbase = require('coinbase');
var client = new coinbase.Client({'apiKey': mykey, 'apiSecret': mysecret});
client.getAccounts({}, function(err, accounts) {
accounts.forEach(function(acct) {
console.log('my bal: ' + acct.balance.amount + ' for ' + acct.name);
});
});`
我收到以下错误:
account.forEach(account => {
^
typeError:无法读取null的属性'forEach'
期待您的回答!谢谢!
最佳答案
错误很明显:accounts
等于null。使用err
之前,应先检查accounts
中的内容。