我使用的設計,我需要從重定向用戶if seller_disabled_paypal_permissions != nil
特定頁面我application_controller.rb
將用戶重定向到指定的頁面與軌道3
我有我的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):有太多的重定向。
我該怎麼辦?
看看你的日誌,看到所有的重定向來了從。 – Swards