-1

今天在我的日志中看到了这一点。

  #############################################################
  #   WARNING! WARNING! WARNING! WARNING! WARNING! WARNING!   #
  #############################################################

  Using positional arguments is **DEPRECATED**. Please use the
  keyword options pattern instead. Version __0.7.0__ of the
  Ruby client will not support positional arguments.

负责的代码是:

bank_account.credit((amount*100).to_i)

我要改变什么?在文档中也找不到任何内容。 https://www.balancedpayments.com/docs/api?language=ruby#credit-an-existing-bank-account

4

2 回答 2

3

bank_account.credit(:amount => (amount*100).to_i)应该做的伎俩。您收到的错误是警告您不要使用位置参数,例如
def example(positional_arg1, positional_arg2);end

可以在此处找到如何正确使用 ruby​​ 客户端的一个很好的示例。

于 2013-06-05T22:16:49.183 回答
0

您应该将此行更改为:

bank_account.credit(:amount => (amount*100).to_i)
于 2013-06-05T19:34:01.383 回答