0
我從web API成功獲取json數據。它正確地記錄到服務器控制檯,但是當我將它傳遞給客戶端時,它將作爲空白[]
。如何將此json數據從服務器傳遞到控制器? Nodejs/AngularJS
我在做什麼錯?
app.get('/balance', function(req, res) {
var poloniexExchange = new Cryptox(
"poloniex", {
key: 'IGVRQCXB',
secret: '93b5686d9ef'
});
//get all account balances
poloniexExchange.getBalance({
account: 'all'
}, function(err, balance) {
if (err)
console.log(err);
if (!err)
console.log(balance.data[0].total); //logging all json data
res.json(balance.data[0].total);
});
});
app.controller('websocketController', function($scope, $http) {
$http.get("/balance")
.then(function(response) {
console.log(response.data); //logging '[]'
});
});
我需要從服務器傳遞到balance.data[0].total
控制器。我做錯了什麼,我該如何做這項工作?