这是密码
<div className="flex-box d-flex justify-content-between align-items-center">
<h6>Price</h6>
<span>
$ {product.price.toLocaleString('en-US', {maximumFractionDigits: 2,})}
</span>
</div>
它显示没有错误
但当我看它的时候,它显示了这个
我该怎么解决这个问题呢?我只想定价为1399.99美元
2条答案
按热度按时间cvxl0en21#
使用Intl.NumberFormat作为数字格式
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat
hzbexzde2#
根据错误消息,在运行时,你没有
product.price
,所以它导致“undefined”。你必须在使用任何其他链接到它的方法之前检查它的可用性。你可以简单地这样做:通过添加?,您正在使用可选链接,并且您不会看到错误。