我在访问此类中其他方法中的变量时遇到问题。这是我的例子:
class CustomersController < ApplicationController
def login
if params[:login].present? && params[:password].present?
**@cust_model** = Customers.new
redirect_to(:action => 'client_dashboard')
end
end
def client_dashboard
@cust_dashboard = **@cust_model**.dashboard(1)
end
end
我的错误是:未定义的方法仪表板