有一种简单的方法可以将 csv 行加载到 Heroku 托管应用程序中吗?
我有一些 csv 导出的数据行,需要加载到 Rails 2.3.8 应用程序中。
csv 数据对于我在 Heroku 上托管的应用程序来说已经是完美的格式。 有简单的方法吗?
谢谢, 奥古斯托
I have some csv exported rows of data that I need to load into a Rails 2.3.8 app.
The csv data is already in the perfect format for the app that I'm hosting on Heroku.
Is there an easy way to do it?
Thanks,
Augusto
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我在这样的事情上取得了成功:
I have had success with something like this:
您可以使用 Ruby 的内置 CSV 库将数据读入数组,然后您可以使用该数组执行您需要的任何操作:
You could use Ruby's built-in CSV library to read your data into an array, which you can then do whatever you need to with:
是的,有一个非常简单的方法。
使用 open-uri 将其加载到您选择的任何控制台中。
csv_file = open('https ://gist.githubusercontent。 com/gauravsaini23/84f9592bbc7cf444e869f8c67321a086/raw/84f7dc0c9d0770a30d28072e05527d1071870042/sample.csv') {|f| f.read}
您已拥有所需的所有数据。
csv = CSV.new(csv_file)
撬(主要)> csv.first
=> [“姓名”,“目的”]
Yes, there is a very simple way.
Use open-uri to load it in any console of your choice.
csv_file = open('https://gist.githubusercontent.com/gauravsaini23/84f9592bbc7cf444e869f8c67321a086/raw/84f7dc0c9d0770a30d28072e05527d1071870042/sample.csv') {|f| f.read}
You have all your required data.
csv = CSV.new(csv_file)
pry(main)> csv.first
=> ["Name", " Purpose"]