2015年1月29日 星期四

[Ruby on Rails] development 環境增加 basic_auth_website .

在測試環境可以加這個. 來輸入basic_auth_for_web before_filter :basic_auth_website if Rails.env.development? def basic_auth_website nm = 'test' pw = "test_#{Rails.env}" authenticate_or_request_with_http_basic("Application") do |name, password| name == nm && password == pw end end

【下列文章您可能也有興趣】

沒有留言: