我正在使用 Ruby on Rails 开发 Web 应用程序。我想检查是否启用了 cookie。如果不是,那么我会显示一条错误消息,并且用户无法继续进行。
在 application_controller 我这样做了..
before_filter :cookies_required
def cookies_required
return true unless cookies["_no_app"].blank?
render :template => "shared/cookies_required", :layout => "login"
end
shared/cookies_required.html.erb 中的代码是...
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<%= stylesheet_link_tag "login.css"%>
<head>
<style type="text/css">
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
div.dialog {
width: 25em;
padding: 0 4em;
margin: 4em auto 0 auto;
}
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
</style>
</head>
<body>
<div class="dialog">
<p><font size="4">Cookies are disabled. First enable it.</font> </p>
</div>
</body>
</html>
此代码正在运行...但问题是当浏览器首次加载页面时,显示错误消息 tht cookie 已禁用,即使它已启用...