Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我集成了 Realex 支付网关。它仅在付款金额为整数的情况下有效,否则当金额为浮点值时会出错。有什么解决办法吗?
您只需要使用整数数量。例如
9.99 EUR => 999 20c => 20 14.99 USD => 1499
将您的浮点数乘以 100 并转换为 int。