【问题标题】:How to fix this error "undefined method `encoding' for nil:NilClassa " and get canceling subscription plan worked?如何修复此错误“nil:NilClassa 的未定义方法‘编码’”并使取消订阅计划有效?
【发布时间】:2026-01-11 01:55:01
【问题描述】:

这是我第一次使用 Stripe 和 Rails,现在我正试图让高级用户取消他们的订阅。

我可以使用我的代码将用户从标准级别升级到高级级别,但是当我尝试将高级用户降级到标准级别时遇到问题。

我已关注“取消订阅”的 Stripe Ruby API 参考:https://stripe.com/docs/api?lang=ruby#cancel_subscription,但当我点击“取消订阅”按钮时出现此错误:

NoMethodError - 未定义的方法encoding' for nil:NilClass: /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/cgi/util.rb:7:inescape' 条纹 (1.21.0) lib/stripe/list_object.rb:19:in retrieve' app/controllers/subscriptions_controller.rb:55:indowngrade'

我的 rails 版本是 4.2.1。

我的代码:

class SubscriptionsController < ApplicationController

def create
    subscription = Subscription.new
      stripe_sub = nil
    if current_user.stripe_customer_id.blank?
      # Creates a Stripe Customer object, for associating with the charge
      customer = Stripe::Customer.create(
        email: current_user.email,
        card: params[:stripeToken],
        plan: 'premium_plan'
        )
      current_user.stripe_customer_id = customer.id
      current_user.save!
      stripe_sub = customer.subscriptions.first
    else
      customer = Stripe::Customer.retrieve(current_user.stripe_customer_id)
      stripe_sub = customer.subscriptions.create(
        plan: 'premium_plan'
        )
    end

    current_user.subid = stripe_sub.id

    current_user.subscription.save!

    update_user_to_premium
    flash[:success] = "Thank you for your subscription!"

    redirect_to root_path 

    # Handle exceptions
    rescue Stripe::CardError => e
     flash[:error] = e.message
     redirect_to new_subscriptions_path
  end


  def downgrade

    customer = Stripe::Customer.retrieve(current_user.stripe_customer_id)
    customer.subscriptions.retrieve(current_user.subid).delete

    downgrade_user_to_standard
    flash[:success] = "Sorry to see you go."
    redirect_to user_path(current_user)

  end
end

应用控制器:

class ApplicationController < ActionController::Base
def update_user_to_premium
    current_user.update_attributes(role: "premium")
   end

   def downgrade_user_to_standard
    current_user.update_attributes(role: "standard")
   end
end

config/initializers/stripe.rb:

Rails.configuration.stripe = {
   publishable_key: ENV['STRIPE_PUBLISHABLE_KEY'],
   secret_key: ENV['STRIPE_SECRET_KEY']
 }

 # Set our app-stored secret key with Stripe
 Stripe.api_key = Rails.configuration.stripe[:secret_key]

任何帮助将不胜感激!

更新: 感谢stacksonstacks的帮助,我只需要在'current_user.subid = stripe_sub.id'下断言'subscription.user = current_user',然后在降级方法中使用“subscription = current_user.subscription”调用订阅ID。现在可以取消订阅了!

【问题讨论】:

    标签: ruby-on-rails stripe-payments


    【解决方案1】:

    似乎current_user.subid 在这一行返回nil

    customer.subscriptions.retrieve(current_user.subid).delete
    

    您为current_user 分配了subid,但您从未保存更改。 你只保存新创建的subscription

    current_user.subid = stripe_sub.id
    current_user.subscription.save!
    

    如果你加current_user.save!我想这会解决问题。

    希望有帮助

    【讨论】:

    • 感谢您的回答!我确实添加了“current_user.save!”在我的创建方法中的“current_user.stripe_customer_id = customer.id”下,但我仍然遇到同样的错误。
    • 你需要把它移到current_user.subid = stripe_sub.id这一行下面,否则它不会保存新的subid
    • 我也尝试移动'current_user.subid = stripe_sub.id'下的行,但同样的问题仍然存在。我的想法是也许我应该在降级方法中的“customer.subscriptions.retrieve(current_user.subid).delete”下添加“subscription.delete(或subscription.save!)”?
    最近更新 更多