在Application Controller中我有两种方法:
def current_user
@current_user ||= User.find_by_auth_token( cookies[:auth_token]) if cookies[:auth_token]
rescue ActiveRecord::RecordNotFound
end
helper_method :current_user
def pro_user
@pro_user = Subscription.where(:email => current_user.email).pluck(:email) if current_user
rescue ActiveRecord::RecordNotFound
end
helper_method :pro_user
付款完成后,当前用户的电子邮件将插入Subscription表中。因此,我通过在Subscription中查找current_user.email来检查用户是否为付费用户。
在视图中,我会相应地阻止专业用户与非专业用户。
<% if current_user %>
<!-- logged in -->
<% if pro_user.empty? %>
<!-- Not a premium user -->
<!--Display some html that iss free but not premium content -->
<% else %>
<!-- This is a premium user -->
<!-- Display all html accordingly -->
<% end %>
<% else %>
<!-- Not logged in-->
<!-- Display html message to log in -->
<% end %>
在我的具有sqlite3 db的开发机器上,一切正常。但是在推送到heroku时,高级用户永远不会被识别出来。基本上我认为如果pro_user.empty?没有按预期工作。任何帮助表示赞赏。空的返回值是否存在轨道差异? sqlite3和pg dbs之间的方法?我做了pg:重置了几次。
答案 0 :(得分:0)
在开发和生产环境中使用不同的dbs肯定存在问题。查询和ORM在sqlite和postgres之间的工作方式可能不同。因此,如果您在heroku上使用它,我建议使用实际的本地postgreSQL。安装非常简单。只需转到我提供的链接并安装即可。