为什么包括?方法在 dev 中返回 true,在 Heroku 上返回 false?
这在我的开发版本中按预期返回 true,但是当部署到 Heroku 时...返回 false...完全相同的数据:
<% if @squad.team.users.include?(current_user) %>
Amazon RDS 上的 Rails 2.3.8 和 MySQL 。
有人遇到过这样的事情吗?
This returns true as expected on my dev build, but when deployed to Heroku...returns false...same exact data:
<% if @squad.team.users.include?(current_user) %>
Rails 2.3.8 and MySQL on Amazon RDS.
Anyone run into anything like this before?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试登录 heroku Rails 控制台 并运行相同的查询,以确保它实际上是相同的数据。如果
.include?
调用实际上失败而不仅仅是返回 false,您可能会得到一些有用的输出。当然,另外,请务必检查您的日志,看看是否有任何问题。
另外,您确定在开发和生产中使用相同的 ruby 版本吗?
Try logging into the heroku rails console and running the same query to be sure that it's actually the same exact data. You might get some helpful output if the
.include?
call is actually failing and not just returning false.Also, of course, be sure to check your logs to see if anything's failing.
Also, are you sure that you're using the same ruby version in both development and production?
在您看来这应该是一件简单的事情
。
It should be a simple matter to
in your view.