如何从承诺返回价值
如何从承诺返回价值。我想比较承诺的价值和我的极限平衡。但是我无法将我的结果归因于自己的状况。如何从承诺返回价值
if (getBalanceByAddress(....) > 228) { console.log('ALL ok')
} else {
console.log('insufficient funds')
}
getBalanceByAddress(addressFrom) {
var _this = this;
return _this.web3.eth.getBalance(addressFrom).then(function(result) {
return result;
});
}
回答:
你需要等待它:
(async function(){ if(await getBalanceByAddress() > 228){
console.log('ALL ok');
} else {
console.log('insufficient funds');
}
})()
以上是 如何从承诺返回价值 的全部内容, 来源链接: utcz.com/qa/264651.html