有一种简单的方法可以将 csv 行加载到 Heroku 托管应用程序中吗?

发布于 2024-11-04 21:32:37 字数 120 浏览 2 评论 0原文

我有一些 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 技术交流群。

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

发布评论

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

评论(3

情深已缘浅 2024-11-11 21:32:37

我在这样的事情上取得了成功:

require 'csv'
CSV.foreach(Rails.root.to_s+"/db/calseed_test1.csv") do |row|
Calevent.create(
:caldate => row[0],
:caltime => row[1], 
:callocation => row[2],
:caldescription => row[3]
)
end

I have had success with something like this:

require 'csv'
CSV.foreach(Rails.root.to_s+"/db/calseed_test1.csv") do |row|
Calevent.create(
:caldate => row[0],
:caltime => row[1], 
:callocation => row[2],
:caldescription => row[3]
)
end
尹雨沫 2024-11-11 21:32:37

您可以使用 Ruby 的内置 CSV 库将数据读入数组,然后您可以使用该数组执行您需要的任何操作:

CSV.foreach("path/to/file.csv") do |row|
  # use row here...
  # For example, if you had users in a CSV file like "username,email" you could do:
  User.create(:username => row[0], :email => row[1])
end

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:

CSV.foreach("path/to/file.csv") do |row|
  # use row here...
  # For example, if you had users in a CSV file like "username,email" you could do:
  User.create(:username => row[0], :email => row[1])
end
几度春秋 2024-11-11 21:32:37

是的,有一个非常简单的方法。

  1. 将文件上传到 gist 或任何可公开访问的地方。
  2. 使用 open-uri 将其加载到您选择的任何控制台中。

    csv_file = open('https ://gist.githubusercontent。 com/gauravsaini23/84f9592bbc7cf444e869f8c67321a086/raw/84f7dc0c9d0770a30d28072e05527d1071870042/sample.csv') {|f| f.read}

  3. 您已拥有所需的所有数据。

    csv = CSV.new(csv_file)
    撬(主要)> csv.first
    => [“姓名”,“目的”]

Yes, there is a very simple way.

  1. Upload the file to gist or anywhere publically accessible.
  2. 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}

  3. You have all your required data.

    csv = CSV.new(csv_file)
    pry(main)> csv.first
    => ["Name", " Purpose"]

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