我目前正在开发基于 Spree 和 Chargify 的现有 Ruby on Rails 应用程序,用于订阅和付款。之前开发该应用程序的人没有提及任何评论,而且大多数事情都不是 RESTful Rails 应用程序的真实代表。
无论如何,我有两件事要澄清。首先,有人可以解释一下这段代码在做什么:
couponJSON = `curl -u #{Chargify.api_key}:x https://#{Chargify.subdomain}.chargify.com/product_families/#{subscription_product_family_id}/coupons/find.json?code=#{params[:payment_form][:coupon_code]}`
coupon_amount_in_cents = ActiveSupport::JSON.decode(couponJSON)['coupon']['amount_in_cents']
第二件事我必须发出 GET 请求:
https://[@subdomain].chargify.com/subscriptions/[@subscription.id].json
返回的 json 响应将是这样的:
> {"subscription":{
> "id":[@subscription.id],
> "state":"active",
> "balance_in_cents":0,
> "current_period_started_at":`auto
> generated`,
> "current_period_ends_at":`auto generated`,
> "activated_at":`auto generated`,
> "trial_ended_at":`auto generated`,
> "trial_started_at":`auto generated`,
> "expires_at":`auto generated`,
> "created_at":`auto generated`,
> "updated_at":`auto generated`,
> "cancellation_message":null,
> "customer":{
> "id":`auto generated`,
> "first_name":`your value`,
> "last_name":`your value`,
> "email":`your value`,
> "organization":`your value`,
> "reference":`your value`,
> "updated_at":`auto generated`,
> "created_at":`auto generated`
> },
> "product":{
> "id":`auto generated`,
> "name":`your value`,
> "handle":`your value`,
> "price_in_cents":`your value`,
> "accounting_code":`your value`,
> "interval":`your value`,
> "interval_unit":`your value`,
> "product_family":{
> "id":`auto generated`,
> "name":`your value`,
> "handle":`your value`,
> "accounting_code":`your value`
> }
> },
> "credit_card":{
> "first_name":`your value`,
> "last_name":`your value`,
> "masked_card_number":`your value`,
> "card_type":`auto generated`,
> "expiration_month":`your value`,
> "expiration_year":`your value`
> }
> }}
我的问题是向上述 URL 发出 get 请求最耗时的方法是什么?第二件事我必须获取几个收到的参数并显示在标题为“ information.html.erb ”的页面上。我认为最好的方法是做这样的事情:
balance = params[_json][:balance_in_cents].
我不确定我是否做对了。任何建议,将不胜感激。
谢谢