为什么包括?方法在 dev 中返回 true,在 Heroku 上返回 false?

发布于 2024-10-11 18:40:38 字数 230 浏览 2 评论 0原文

这在我的开发版本中按预期返回 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你是年少的欢喜 2024-10-18 18:40:38

尝试登录 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?

可爱咩 2024-10-18 18:40:38

在您看来这应该是一件简单的事情

<%= debug @squad.team.users %>
# and
<%= debug current_user %>

It should be a simple matter to

<%= debug @squad.team.users %>
# and
<%= debug current_user %>

in your view.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文