我似乎无法使用它来处理字符串
binance.prices((error, ticker) => {
console.log("Price of BTC: ", ticker.BTCUSDT);
});
返回正确的值(BTC的价格)
var coin = "BTCUSDT"
binance.prices((error, ticker) => {
console.log("Price of BTC: ", ticker.[coin]);
});
返回SyntaxError: Unexpected token [
。我已经询问了周围,但是对此没有任何帮助。
答案 0 :(得分:0)
使用
console.log("Price of BTC: ", ticker.coin);
或
console.log("Price of BTC: ", ticker[coin]);