if seller_disabled_paypal_permissions != nil
我使用设计,我需要将用户重定向到我的特定页面application_controller.rb
我的 application_controller.rb 上有这段代码
class ApplicationController < ActionController::Base
before_filter :bad_sellers
#more code
.
.
.
private
def bad_sellers
if user_signed_in?
redirect_to requirements_to_sell_user_path, :alert => t('.error') if current_user.seller_disabled_paypal_permissions != nil
return false
end
end
end
但我得到错误:
错误 310 (net::ERR_TOO_MANY_REDIRECTS):重定向太多。
我该怎么做?