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.
如何在 osclass 中获取没有货币代码的商品价格?我需要这个值将其发送到 Paypal。
我希望函数只获取 10 个数字。
osc_item_price() 是正确使用的函数,但您必须将返回的数字除以 1000000。您可以使用以下函数来执行此操作:
function getItemPrice() { return osc_item_price()/1000000; }