我想为我的项目创建一个登录页面,并在不使用任何数据库的情况下验证用户。我该怎么做?缓存有可能吗?请指导我。
答案 0 :(得分:1)
您可以使用HTTP基本身份验证吗?作为参考,这是railscast。
一个例子:
before_filter :authenticate
protected
def authenticate
authenticate_or_request_with_http_basic do |username, password|
username == "foo" && password == "bar"
end
end