【发布时间】: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