使标识符或关键字跟随数字标识符做出反应 - rapid api
Make An identifier or keyword follow a numeric identifier react - rapid api
我尝试使用 rapid api 中的硬币排名 api 但是当我去显示加密货币的 24 小时交易量时出现错误。
数据显示如下:
Object
data:
coin:
24hVolume: "21504479215"
allTimeHigh: {price: '68763.41083248306', timestamp: 1636502400}
但是当我输入 cryptoDetails?.coin.24hVolume
我收到一条错误消息:标识符或关键字没有跟在数字标识符后面。
我如何覆盖它?
数字标识符是 not allowed in JavaScript. However, you could access to object properties using Bracket Notation。
In the object[property_name] syntax, the property_name is just a string or Symbol. So, it can be any string, including '1foo', '!bar!', or even ' ' (a space).
像这样。
obj.data.coin['24hVolume']
我尝试使用 rapid api 中的硬币排名 api 但是当我去显示加密货币的 24 小时交易量时出现错误。
数据显示如下:
Object
data:
coin:
24hVolume: "21504479215"
allTimeHigh: {price: '68763.41083248306', timestamp: 1636502400}
但是当我输入 cryptoDetails?.coin.24hVolume
我收到一条错误消息:标识符或关键字没有跟在数字标识符后面。
我如何覆盖它?
数字标识符是 not allowed in JavaScript. However, you could access to object properties using Bracket Notation。
In the object[property_name] syntax, the property_name is just a string or Symbol. So, it can be any string, including '1foo', '!bar!', or even ' ' (a space).
像这样。
obj.data.coin['24hVolume']