CSV 不适用于使用乘客的生产中的 Rails 3

发布于 2024-11-10 08:28:31 字数 303 浏览 2 评论 0原文

我目前在rails3 中导出一些数据并生成CSV 时遇到问题。在我的控制器中,我在顶部添加以下内容。

require 'CSV'

然后我就有了生成 CSV 文件的方法。 在开发过程中,我能够很好地生成和下载 csv 文件,但在生产模式下,乘客向我返回以下错误。

No such file to load -- CSV

想知道是否有人遇到过这个问题,因为我认为 CSV 库包含在 ruby​​ 1.9.2 中,我没有使用任何 gems 来创建 CSV 文件。

I currently have a problem where i am exporting some data and generating a CSV in rails3. In my controller i add the following at the top.

require 'CSV'

I then have my method that generates the CSV file.
In development i am able to generate and download the csv file just fine but in production mode, passenger returns me the following error.

No such file to load -- CSV

wondering if anyone has had this issue because i thought the CSV library included in ruby 1.9.2, i am not using any gems for creating a CSV file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

杀手六號 2024-11-17 08:28:31

我认为它是 csv 而不是 CSV

require 'csv'

I think it is csv instead of CSV:

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