CSV 不适用于使用乘客的生产中的 Rails 3
我目前在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为它是 csv 而不是 CSV:
I think it is csv instead of CSV: